index.vue 411 B

123456789101112131415161718
  1. <template>
  2. <view>
  3. <view>欢迎来到门墩儿招聘</view>
  4. <uni-segmented-control :current="current" :values="items" style-type="button" active-color="#00897B" @clickItem="onClickItem" />
  5. </view>
  6. </template>
  7. <script setup>
  8. import { ref } from 'vue'
  9. const items = ['短信登录', '账号登录']
  10. const current = ref(0)
  11. const onClickItem = (e) => {}
  12. </script>
  13. <style scoped lang="scss">
  14. </style>