17 lines
534 B
Vue
17 lines
534 B
Vue
|
<!--
|
||
|
* @Author: XHC
|
||
|
* @Date: 2025-05-19 11:07:37
|
||
|
* @LastEditors: XHC
|
||
|
* @LastEditTime: 2025-05-19 11:41:40
|
||
|
* @FilePath: \bht-app\src\pages\index\index.vue
|
||
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||
|
-->
|
||
|
<template>
|
||
|
<view class="index">index</view>
|
||
|
<uni-countdown :day="1" :hour="1" :minute="12" :second="40"></uni-countdown>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped></style>
|