Files
ClassContent/历届学生/fontendseven/项目练习/上课项目/uniapp-tpl/pages/info/info.vue
2024-09-27 02:06:13 +08:00

27 lines
248 B
Vue

<template>
<view>
{{ id }}
</view>
</template>
<script>
export default {
data() {
return {
id: null
}
},
onLoad(option) {
console.log(option)
this.id = option.id
},
methods: {
}
}
</script>
<style>
</style>