notice.uvue 264 B

123456789101112131415
  1. <template>
  2. <cl-page>
  3. <view class="p-3">
  4. <cl-list>
  5. <cl-list-item :label="t('开启通知')">
  6. <cl-switch></cl-switch>
  7. </cl-list-item>
  8. </cl-list>
  9. </view>
  10. </cl-page>
  11. </template>
  12. <script setup lang="ts">
  13. import { t } from "@/.cool";
  14. </script>