Files
ClassContent/历届学生/front-end-team-11/项目开发/上课项目/uniapp-tpl/pages/info/info.vue
2024-09-27 02:06:13 +08:00

27 lines
242 B
Vue

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