2022-03-02
2022-03-02 本文已影响0人
读书练习生
vue 3 绑定props的值类型如string| [] |boolean不定 ts如何处理报错
如 props的value类型为string | boolean |[]
本子组件需要绑定的类型为[]
处理方法:
重新定义一个数据
let array = ref(props.value) as unkown as Ref<list【】>
先转换成unkown 再ref成你需要的类型即可
vue 3 绑定props的值类型如string| [] |boolean不定 ts如何处理报错
如 props的value类型为string | boolean |[]
本子组件需要绑定的类型为[]
处理方法:
重新定义一个数据
let array = ref(props.value) as unkown as Ref<list【】>
先转换成unkown 再ref成你需要的类型即可