123456789101112131415161718 |
- <template>
- <view>
- <view>欢迎来到门墩儿招聘</view>
- <uni-segmented-control :current="current" :values="items" style-type="button" active-color="#00897B" @clickItem="onClickItem" />
- </view>
- </template>
- <script setup>
- import { ref } from 'vue'
- const items = ['短信登录', '账号登录']
- const current = ref(0)
- const onClickItem = (e) => {}
- </script>
- <style scoped lang="scss">
- </style>
|