随笔分类 - vue3
vue3学习
摘要:##仅记录笔记 <template> <div> <h2>当前求和为:{{num}}</h2> <button @click="sum++">点我加1</button> <br /> <h2>watch监听多个ref声明:{{msg}}</h2> <button @click="msg+'!'">点
阅读全文
摘要:##没有描述 只是记录自己的学习笔记 <template> <!-- vue3 外部的div可以不要 直接去写 --> <div> 姓: <input type="text" v-mode="person.firstName" /> 名: <input type="text" v-mode="per
阅读全文
摘要:##父组件vue3parent <template> <children msg="父亲像儿子传递一句话" @sayhello="childToParentEmit"> <!-- 传递一个带名字的插槽 aaa为插槽名字--> <!-- 在vue3中尽量用v-slot的方式 在自组件内使用contex
阅读全文
摘要:##废话不多少 写一个html ##源码用到了映射Reflect window上新增的一个映射属性,和object一样,具体mdn可以详细了解。 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="vi
阅读全文