chore: 缺失图标文件
This commit is contained in:
@@ -105,13 +105,13 @@ import { showToast } from 'vant'
|
||||
const router = useRouter()
|
||||
|
||||
// 表单数据
|
||||
const formData = reactive({
|
||||
const formData = reactive<Record<string, string>>({
|
||||
email: '',
|
||||
password: ''
|
||||
})
|
||||
|
||||
// 表单验证状态
|
||||
const formErrors = reactive({
|
||||
const formErrors = reactive<Record<string, string>>({
|
||||
email: '',
|
||||
password: ''
|
||||
})
|
||||
|
||||
@@ -72,15 +72,15 @@ import { google } from '@/assets/base64'
|
||||
const router = useRouter()
|
||||
|
||||
// 表单数据
|
||||
const formData = reactive({
|
||||
name:'',
|
||||
const formData = reactive<Record<string, string>>({
|
||||
name: '',
|
||||
email: '',
|
||||
password: ''
|
||||
})
|
||||
|
||||
// 表单验证状态
|
||||
const formErrors = reactive({
|
||||
name:'',
|
||||
const formErrors = reactive<Record<string, string>>({
|
||||
name: '',
|
||||
email: '',
|
||||
password: ''
|
||||
})
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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' }
|
||||
])
|
||||
|
||||
Reference in New Issue
Block a user