Files
ClassContent/历届学生/front-end-team/项目练习/上课项目/uniapp_tpl/pages/Info/Info.vue
2024-09-27 02:06:13 +08:00

24 lines
256 B
Vue

<template>
<view class="info">
info {{ id }}
</view>
</template>
<script>
// onPullDownRefresh
export default {
data() {
return {
id: null
};
},
onLoad(option) {
this.id = option.id
}
}
</script>
<style lang="less">
</style>