You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
370 B
Vue
23 lines
370 B
Vue
|
8 months ago
|
<template>
|
||
|
|
<view class="p-root-elect g_w_all g_bg_f_5 g_kuaishou">
|
||
|
|
<selectPanel />
|
||
|
|
</view>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import selectPanel from '../../pages/home/child/select.vue';
|
||
|
|
export default{
|
||
|
|
onShareAppMessage() {
|
||
|
|
return this.G.shareFun();
|
||
|
|
},
|
||
|
|
components:{
|
||
|
|
selectPanel
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="less">
|
||
|
|
.p-root-elect{
|
||
|
|
min-height: 100vh;
|
||
|
|
}
|
||
|
|
</style>
|