首頁 > 軟體

vue3 封裝自定義元件v-model的範例

2022-07-27 14:01:17

首先要注意 vue3中 v-model 預設繫結的變數名變了,從原理的 value 改成了 modelValue,
如果要改變變數的值,要執行一個事件 this.$emit("update:modelValue", value);

<template>
	<div class="inline">
		<input :type="password ? 'password' : 'text'" ref="input" @input="handleInput" @blur="handleBlur($event.target.value)" :placeholder="placeholder" />
	</div>
</template>
<script>
export default {
	name: "dg-Input",
	props: {
		type: {
			type: String,
			requided: true,
		},
		placeholder: {
			type: String,
		},
		password: {
			default: false,
		},
		modelValue: [String, Number],
	},
	data() {
		return {};
	},
	computed: {
		nativeInputValue() {
			return this.modelValue === null || this.modelValue === undefined ? "" : String(this.modelValue);
		},
	},
	methods: {
		handleInput(event) {
			let value = event.target.value;
			this.$emit("update:modelValue", value);
			this.$emit("input", value);
			this.$nextTick(this.setNativeInputValue);
		},
		setNativeInputValue() {
			const input = this.$refs.input;
			if (input.value === this.nativeInputValue) return;
			input.value = this.nativeInputValue;
		},

	
	},
	mounted() {
		this.setNativeInputValue();
	},
};
</script>
<style lang="scss" scoped>
.inline {
	display: inline-block;
	input {
		width: 100%;
		height: 100%;
		padding-left: 5px;
	}
}
</style>

vue3檔案地址

補充:下面看下vue3中自定義元件使用v-model

vue2 中的v-model

v-model本質上是一個語法糖,如下程式碼

<input v-model="test">
<!--上面程式碼本質上就是下方程式碼-->
<input :value="test" @input="test = $event.target.value">

因此,對於一個帶有 v-model 的元件(核心用法),它應該如下:

帶有v-model的父元件通過繫結的value值(即v-model的繫結值)傳給子元件,子元件通過 prop接收一個 value;
子元件利用oninput事件實時通過 $emit 觸發父元件input 事件,並傳入新值value給父元件;

父元件

<template>
    <div>
        <child v-model="msg" @input="msg = $event.target.value" />
        <!--<child :value="msg" @input="msg = $event.target.value" />-->
    </div>
</template>
<script>
import child from './components/Child.vue'
export default {
    components: {
        child
    },
    data() {
        return {
            msg: ''
        }
    }
}
</script>

子元件child

<template>
    <input type="text" :value="modelValue" @input="handleInput">
</template>
<script>
export default {
    name: 'Child',
    props:['value'],
    data() {
        return {
            modelValue: this.value
        }
    },
    methods: {
        handleInput(event) {
            this.$emit('input', event)
        }
    }
}

vue3中的 v-model

vue3中的v-model預設繫結的不是value,而是modelValue,接收的方法由input改為@update:modelValue。

<template>
  <child v-model="msg" />
  <p>{{msg}}</p>
</template>
 
<script lang="ts">
import { defineComponent,ref} from 'vue';
import child from './components/child/index.vue'
 
export default defineComponent({
  name: 'App',
  components:{
    child
  },
  setup(){
    const msg = ref('1')
    return{
      msg
    }
  }
});
</script>
<template>
    <input type="text" :value="modelValue" @input="onInput">
</template>
<script lang="ts">
import {defineComponent} from 'vue'
export default defineComponent({
    name:'ChildInput',
    props:{
        modelValue:{
            type:String
        }
    },
    setup(props, context){
        const onInput = (e: Event) =>{
            context.emit('update:modelValue',e.target.value)
        }
        return{
            onInput
        }
    }
})
</script>

到此這篇關於vue3 封裝自定義元件v-model的文章就介紹到這了,更多相關vue3 自定義元件v-model內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com