2022年8月4日
摘要: 自定义指令:对普通 DOM 元素进行底层操作。 v-focus指令:(main.js中注册全局自定义指令) import { createApp } from 'vue' import App from './App.vue' import router from './router' import 阅读全文
posted @ 2022-08-04 17:34 法老的微笑 阅读(245) 评论(0) 推荐(0)
摘要: 父组件: <template> <div> <!-- 父级作用域中,可以使用 slot 定义我们提供的插槽 prop 的名字 --> <todo-list> <template v-slot:default="slotProps"> <span class="green">{{ slotProps. 阅读全文
posted @ 2022-08-04 16:23 法老的微笑 阅读(89) 评论(0) 推荐(0)