27 lines
248 B
Vue
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>
|