24 lines
256 B
Vue
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>
|