美文网首页
2022-03-02

2022-03-02

作者: 读书练习生 | 来源:发表于2022-03-02 12:34 被阅读0次

    vue 3  绑定props的值类型如string| [] |boolean不定 ts如何处理报错

    如 props的value类型为string | boolean |[]

    本子组件需要绑定的类型为[]

    处理方法:

    重新定义一个数据

    let array = ref(props.value) as unkown as Ref<list【】>

    先转换成unkown  再ref成你需要的类型即可

    相关文章

      网友评论

          本文标题:2022-03-02

          本文链接:https://www.haomeiwen.com/subject/clisrrtx.html