>[success] # 全局组件 vue2.x vs vue3.x
~~~
1.'2.x' 和'3.x'创建全局组件上
1.1.'2.x'在注册之后可以用在任何新创建的 Vue 根实例 全局组件,产生这种效果的原因是都从同一个
'Vue' 构造函数创建的每个根实例共享相同的全局配置
1.2.'2.x' 这种多个'vue实例共享'产生的问题,全局配置很容易意外地污染其他测试用例
2.通过下面案例注意,需要'3.x' 最后在链式调用的时候绑上'mount'即
const app = createApp(Counter)
app.component({...}).mount(...)
~~~
>[info] ## 关于template 标签说明
~~~
1.使用template标签,因为特性是不会被浏览器渲染,可以参考mdn
2.除了下面template 这种包裹利用浏览器不会渲染template 中内容,也可使用script标签,并且标记它的类型为 x-template,
这样浏览器也不会解析内容在script 包裹下html缺点少了代码提示写法如下
<script type="x-template" id="todo">
<ul>
<li v-for="todo in ctodos">{{todo}}</li>
</ul>
</script>
~~~
>[danger] ##### 效果
* 2.x
~~~
// 这会影响两个根实例,因为绑定在Vue构造函数上,因此两个新的vue 实例上都共享这个组件
Vue.component({
/* ... */
})
const app1 = new Vue({ el: '#app-1' })
const app2 = new Vue({ el: '#app-2' })
~~~
* 3.x
~~~
// 只在自己创建的绑定全局组件
import { createApp } from 'vue'
const app = createApp(Counter)
app.component({
/* ... */
})
~~~
>[info] ## 使用案例
~~~ html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<div id="app">
<!-- 使用组件 -->
<todo-item :ctodos="todos" />
</div>
<!-- 组件template 定义在 app 节点外面 -->
<template id="todo">
<ul>
<li v-for="todo in ctodos">{{todo}}</li>
</ul>
</template>
<!-- 引入vue cdn -->
<script src="https://unpkg.com/vue@next"></script>
<script>
// 创建全局组件
/* 不想在html 上定义template 可以这么写
app.component('todo-item',{
props: {
todo:Object
},
template:`<li>{{todo.text}}</li>`
})
*/
const TodoItem = {
template: '#todo',
props: {
ctodos: Array,
},
}
// 创建vue
const vm = Vue.createApp({
data() {
return {
todos: [1, 2, 3, 4, 5],
}
},
})
// 将组件设置为全局组件
// 第一参数:组件名 第二个参数:组件配置
vm.component('todo-item', TodoItem)
vm.mount('#app')
</script>
</body>
</html>
~~~
>[success] # 局部组件案例
~~~
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<div id="app">
<!-- 使用组件 -->
<todo-item :ctodos="todos" />
</div>
<!-- 引入vue cdn -->
<script src="https://unpkg.com/vue@next"></script>
<script>
// 创建vue
const vm = Vue.createApp({
// 局部组件
components: {
todoItem: {
template: `<ul>
<li v-for="todo in ctodos">{{todo}}</li>
</ul>`,
props: {
ctodos: Array,
},
},
},
data() {
return {
todos: [1, 2, 3, 4, 5],
}
},
})
vm.mount('#app')
</script>
</body>
</html>
~~~
- 官网给的工具
- 声明vue2 和 vue3
- 指令速览
- Mustache -- 语法
- v-once -- 只渲染一次
- v-text -- 插入文本
- v-html -- 渲染html
- v-pre -- 显示原始的Mustache标签
- v-cloak -- 遮盖
- v-memo(新)-- 缓存指定值
- v-if/v-show -- 条件渲染
- v-for -- 循环
- v-bind -- 知识
- v-bind -- 修饰符
- v-on -- 点击事件
- v-model -- 双向绑定
- 其他基础知识速览
- 快速使用
- 常识知识点
- key -- 作用 (后续要更新)
- computed -- 计算属性
- watch -- 侦听
- 防抖和节流
- vue3 -- 生命周期
- vue-cli 和 vite 项目搭建方法
- vite -- 导入动态图片
- 组件
- 单文件组件 -- SFC
- 组件通信 -- porp
- 组件通信 -- $emit
- 组件通信 -- Provide / Inject
- 组件通信 -- 全局事件总线mitt库
- 插槽 -- slot
- 整体使用案例
- 动态组件 -- is
- keep-alive
- 分包 -- 异步组价
- mixin -- 混入
- v-model-- 组件
- 使用计算属性
- v-model -- 自定义修饰符
- Suspense -- 实验属性
- Teleport -- 指定挂载
- 组件实例 -- $ 属性
- Option API VS Composition API
- Setup -- 组合API 入口
- api -- reactive
- api -- ref
- 使用ref 和 reactive 场景
- api -- toRefs 和 toRef
- api -- readonly
- 判断性 -- API
- 功能性 -- API
- api -- computed
- api -- $ref 使用
- api -- 生命周期
- Provide 和 Inject
- watch
- watchEffect
- watch vs. watchEffect
- 简单使用composition Api
- 响应性语法糖
- css -- 功能
- 修改css -- :deep() 和 var
- Vue3.2 -- 语法
- ts -- vscode 配置
- attrs/emit/props/expose/slots -- 使用
- props -- defineProps
- props -- defineProps Ts
- emit -- defineEmits
- emit -- defineEmits Ts
- $ref -- defineExpose
- slots/attrs -- useSlots() 和 useAttrs()
- 自定义指令
- Vue -- 插件
- Vue2.x 和 Vue3.x 不同点
- $children -- 移除
- v-for 和 ref
- attribute 强制行为
- 按键修饰符
- v-if 和 v-for 优先级
- 组件使用 v-model -- 非兼容
- 组件
- h -- 函数
- jsx -- 编写
- Vue -- Router
- 了解路由和vue搭配
- vueRouter -- 简单实现
- 安装即使用
- 路由懒加载
- router-view
- router-link
- 路由匹配规则
- 404 页面配置
- 路由嵌套
- 路由组件传参
- 路由重定向和别名
- 路由跳转方法
- 命名路由
- 命名视图
- Composition API
- 路由守卫
- 路由元信息
- 路由其他方法 -- 添加/删除/获取
- 服务器配置映射
- 其他
- Vuex -- 状态管理
- Option Api -- VUEX
- composition API -- VUEX
- module -- VUEX
- 刷新后vuex 数据同步
- 小技巧
- Pinia -- 状态管理
- 开始使用
- pinia -- state
- pinia -- getter
- pinia -- action
- pinia -- 插件 ??
- Vue 源码解读
- 开发感悟
- 练手项目