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