|
@@ -1,10 +1,10 @@
|
|
|
<template>
|
|
|
<view>
|
|
|
<home v-show="tabbarActive === 'home'" @switch-tab="switchTab" />
|
|
|
- <exhibitor v-show="tabbarActive === 'exhibitor'" @share="onShare" />
|
|
|
- <activity v-show="tabbarActive === 'activity'" />
|
|
|
- <user v-show="tabbarActive === 'user'" />
|
|
|
- <product v-show="tabbarActive === 'product'"></product>
|
|
|
+ <exhibitor v-if="tabbarActive === 'exhibitor'" @share="onShare" />
|
|
|
+ <activity v-if="tabbarActive === 'activity'" />
|
|
|
+ <user v-if="tabbarActive === 'user'" />
|
|
|
+ <product v-if="tabbarActive === 'product'"></product>
|
|
|
<van-dialog id="van-dialog" />
|
|
|
<tab-bar :active.sync="tabbarActive"></tab-bar>
|
|
|
<u-share-action-sheet :show.sync="showShare" :show-info="shareInfo" />
|