chore: 缺失图标文件

This commit is contained in:
zhangyh
2025-10-13 15:28:53 +08:00
parent 2721408469
commit c0c0329d88
6 changed files with 9 additions and 9 deletions

View File

@@ -75,7 +75,7 @@ import Video from './components/Video.vue'
const router = useRouter()
// stylist数据
const stylists = ref<Array<any>>([
const stylists = ref<any[]>([
{
id: 1,
name: 'Vera Lo',

View File

@@ -17,7 +17,7 @@
</template>
<script setup lang="ts">
import { ref } from 'vue'
const options = ref([
const options = ref<any[]>([
{ label: 'Female', value: '1' },
{ label: 'Male', value: '0' }
])