Vue3新特性-创建自定义渲染器 发表于 2020-12-29 | 分类于 Vue3 字数统计: 61 字 | 阅读时长 ≈ 1 分钟 createRenderer API 来自 @vue/runtime-core 12345678910111213141516import { createRenderer } from '@vue/runtime-core'const { rend ... 阅读全文 »
Vue3新特性-Teleport 发表于 2020-12-28 | 分类于 Vue3 字数统计: 1.2k 字 | 阅读时长 ≈ 5 分钟 API:teleportProps: to - string。需要 prop,必须是有效的查询选择器或 HTMLElement (如果在浏览器环境中使用)。指定将在其中移动 <teleport> 内容的目标元素 12345678<!-- 正确 --><telepor ... 阅读全文 »
Vue3组合式API-提供/注入 发表于 2020-12-25 | 分类于 Vue3 字数统计: 1.1k 字 | 阅读时长 ≈ 6 分钟 示例123456789101112131415161718192021<!-- src/components/MyMap.vue --><template> <MyMarker /></template>< ... 阅读全文 »
Vue3组合式API-生命周期 发表于 2020-12-25 | 分类于 Vue3 字数统计: 354 字 | 阅读时长 ≈ 1 分钟 你可以通过在生命周期钩子前面加上 “on” 来访问组件的生命周期钩子。 下表包含如何在 setup() 内部调用生命周期钩子: 阅读全文 »