2021年3月27日

摘要: <div id="app"></div> <script> const root = Vue.createApp({ template:` <div> <my-title :level='2'> hey <my-title/> </div> ` }) //定义 全局组件 root.component 阅读全文
posted @ 2021-03-27 16:17 周涵柔 阅读(51) 评论(0) 推荐(0) 编辑
 
摘要: Teleport 是什么Teleport 是一种能够将我们的模板移动到 DOM 中 Vue app 之外的其他位置的技术。 如果我们嵌套在 Vue 的某个组件内部,那么处理嵌套组件的定位、z-index 和样式就会变得很困难。使用Teleport 就可以方便的解决组件间 css 层级问题—————— 阅读全文
posted @ 2021-03-27 15:30 周涵柔 阅读(339) 评论(0) 推荐(0) 编辑