这里发现报错,关闭vscode重启也还是有问题。
后面发现其实这句是typescript定义类型的语法,是因为我将代码写在<script></script>里面,使用ts语法需要表明lang="ts"即将代码写在<script lang="ts"></script>将不会报错
说明一下这句代码的含义(自己理解,如有不对请指正):
组件是一个对象,它只是对组件的描述,类似于类;我们想要在另一个组件中使用不是使用组件对象而是根据组件对象创建出来的真正实例--<login-account ref="accountRef" />
我们想要在组件中调用其他组件的方法等就需要这个对象实例const accountRef = ref<InstanceType<typeof LoginAccount>>()通过accountRef .value?.方法名()来调用
<template>
<div class="login-panel">
<h1 class="title">后台管理系统</h1>
<el-tabs type="border-card" stretch v-model="currentTab">
<el-tab-pane name="account">
<template #label>
<span><i class="el-icon-user-solid"></i> 账号登录</span>
</template>
<login-account ref="accountRef" />
</el-tab-pane>
<el-tab-pane name="phone">
<template #label>
<span><i class="el-icon-mobile-phone"></i> 手机登录</span>
</template>
<login-phone ref="phoneRef" />
</el-tab-pane>
</el-tabs>
<div class="account-control">
<el-checkbox v-model="isKeepPassword">记住密码</el-checkbox>
<el-link type="primary">忘记密码</el-link>
</div>
<el-button type="primary" class="login-btn" @click="handleLoginClick"
>立即登录</el-button
>
</div>
</template>
<script lang="ts">
import { defineComponent, ref } from 'vue'
import LoginAccount from './login-account.vue'
import LoginPhone from './login-phone.vue'
export default defineComponent({
components: {
LoginAccount,
LoginPhone
},
setup() {
// 1.定义属性
const isKeepPassword = ref(true)
const accountRef = ref<InstanceType<typeof LoginAccount>>()
const phoneRef = ref<InstanceType<typeof LoginPhone>>()
const currentTab = ref('account')
// 2.定义方法
const handleLoginClick = () => {
if (currentTab.value === 'account') {
accountRef.value?.loginAction(isKeepPassword.value)
} else {
console.log('phoneRef调用loginAction')
}
}
return {
isKeepPassword,
accountRef,
phoneRef,
currentTab,
handleLoginClick
}
}
})
</script>
<style scoped lang="less">
.login-panel {
margin-bottom: 150px;
width: 320px;
.title {
text-align: center;
}
.account-control {
margin-top: 10px;
display: flex;
justify-content: space-between;
}
.login-btn {
width: 100%;
margin-top: 10px;
}
}
</style>