>[success] # v-model 组件
1. 在`input`中可以使用`v-model`来完成**双向绑定**,组件也可以使用`v-model`形式进行双向绑定和` vue2.x` 时候只能定义一个,因此往往使用`.sync` 语法糖进行多个绑定,在`vue3.x` 开始,`v-model` 用法也升级了可以进行多个绑定,因此`.sync`语法糖也在3移除
2. 在组件使用`v-model`他的语法糖 需要定义的`props `属性名 `modelValue` 触发抛出的事件名`update:modelValue`
~~~ html
<input v-model="searchText" />
<!--等价于:-->
<input :value="searchText" @input="searchText = $event.target.value" />
~~~
~~~html
<custom-input v-model="searchText" />
<!--等价于:-->
<custom-input
:model-value="searchText"
@update:model-value="searchText = $event"
></custom-input>
~~~
* CustomInput 组件 定义
~~~html
<!-- CustomInput.vue -->
<script>
export default {
props: ['modelValue'],
emits: ['update:modelValue']
}
</script>
<template>
<input
:value="modelValue"
@input="$emit('update:modelValue', $event.target.value)"
/>
</template>
~~~
**通过案例对比看也就`value` => `model-value`,`input` => ` @update:model-value`**
>[danger] ##### 在对比来看不用v-model 语法糖来写
~~~
1. 案例就是常见的,父组件传值给子组件,子组件触发事件改变父组件值,从而达到改变子组件值
~~~
* 父
~~~
<template>
<children-todo :model-value="name" @update:model-value="name = $event">
</children-todo>
</template>
<script>
import childrenTodo from './components/children-todo.vue'
export default {
name: 'App',
components: {
childrenTodo,
},
data() {
return {
name: '父组件',
}
},
}
</script>
<style></style>
~~~
* 子
~~~
<template>
<div class="content">
{{ modelValue }}
<button @click="change">改变</button>
</div>
</template>
<script>
export default {
props: ['modelValue'],
emits: ['update:modelValue'],
methods: {
change() {
this.$emit('update:modelValue', '1', '2')
},
},
}
</script>
~~~
>[danger] ##### 绑定多个v-model
1. 原来`2.x`由于 `v-model` 在一个组件只能出现一次,因此出现了使用`.sync`语法糖来弥补这个问题,现在`3.x`的`v-model `支持绑定多个因此`.sync` 也不在支持
2. 用法只要声明`v-model` 所属即可,`v-model:名字` 例如 组件默认的`v-model` 其实是`v-model:modelValue` 的缩写因此在子组件接受时候`props` 为`props: ['modelValue']` , 事件为`emits: ['update:modelValue']`,那如果绑定值定义如下`v-model:title` 则`props: ['title']` ,`emits: ['update:title']`
* 父
~~~html
<template>
<children-todo v-model="name" v-model:title="title"> </children-todo>
</template>
<script>
import childrenTodo from './components/children-todo.vue'
export default {
name: 'App',
components: {
childrenTodo,
},
data() {
return {
title: '父组件标题',
name: '父组件',
}
},
}
</script>
<style></style>
~~~
* 子
~~~html
<template>
<div class="content">
{{ modelValue }}
{{ title }}
<button @click="change">改变</button>
</div>
</template>
<script>
export default {
props: ['modelValue', 'title'],
emits: ['update:modelValue', 'update:title'],
methods: {
change() {
this.$emit('update:modelValue', '1')
this.$emit('update:title', 'title')
},
},
}
</script>
<style scoped>
.content {
display: flex;
}
.left,
.right {
width: 80px;
}
.left,
.right,
.center {
height: 44px;
}
.left,
.right {
width: 80px;
background-color: red;
}
.center {
flex: 1;
background-color: blue;
}
</style>
~~~
>[info] ## 官方
[配合 v-model 使用](https://cn.vuejs.org/guide/components/events.html#usage-with-v-model)
- 官网给的工具
- 声明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 源码解读
- 开发感悟
- 练手项目