32 lines
436 B
Vue
32 lines
436 B
Vue
<template>
|
|
<view>
|
|
<uni-segmented-control :current="current" :values="" @clickItem=""></uni-segmented-control>
|
|
<view class="content">
|
|
<view v-show="current === 0">
|
|
选项卡1的内容
|
|
</view>
|
|
<view v-show="current === 1">
|
|
选项卡2的内容
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
current:0,
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|