vue3 v-bind="$attrs" inherits all the properties of the component
When we encapsulate element-plus components twice, we often encounter the situation where there are too many attributes of the components in it. Do we need to write each one out? In fact, it is not necessary. v-bind="$attrs" solves this problem very well. For example, we encapsulate the time selection component code as follows:
Used in parent component:
<template> <div> <m-choose-time :startOptions="startOptions" @startChange="startChange" @endChange="endChange"> </m-choose-time> </div> </template> <script lang='ts' setup> let startOptions = { size: 'mini', clearable: false } </script> <style lang='scss' scoped> </style>
Subcomponent code:
<template> <div style="display: flex;"> <div style="margin-right: 20px;"> <el-time-select v-model="startTime" :placeholder="startPlaceholder" :start="startTimeStart" :step="startStep" :end="startTimeEnd" v-bind="$" ></el-time-select> </div> <div> <el-time-select v-model="endTime" :min-time="startTime" :placeholder="endPlaceholder" :start="endTimeStart" :step="endStep" :end="endTimeEnd" :disabled="endTimeDisabled" v-bind="$" ></el-time-select> </div> </div> </template> <script lang='ts' setup> import {ref, watch} from 'vue' let props = defineProps({ // Placeholder for start time startPlaceholder: { type: String, default: 'Please select the start time' }, // Placeholder for end time endPlaceholder: { type: String, default: 'Please select the end time' }, // Start selection of start time startTimeStart: { type: String, default: "08:00" }, // Steps of the start time startStep: { type: String, default: "00:30" }, // End selection of start time startTimeEnd: { type: String, default: "24:00" }, // Select the start of the end time endTimeStart: { type: String, default: "08:00" }, // Steps of end time endStep: { type: String, default: "00:30" }, // End selection of end time endTimeEnd: { type: String, default: "24:00" }, }) let emits = defineEmits(['startChange', 'endChange']) // Start timelet startTime = ref<string>('') // End timelet endTime = ref<string>('') // Whether to disable the end timelet endTimeDisabled = ref<boolean>(true) // Changes in monitoring start timewatch(() => , val => { if (val === '') { = '' = true } else { = false // Distribute events to parent component emits('startChange', val) } }) // Changes in the listening end timewatch(() => , val => { if (val !== '') { emits('endChange', { startTime: , endTime: val }) } }) </script> <style lang='scss' scoped> </style>
As shown in the above example, in props, we only encapsulate some properties in el-time-select. When we use it in subcomponents, we can pass on the size and clearable properties in the startOptions. In the encapsulation, we can inherit it very well by using v-bind="$". Of course, if you do not pass startOptions, you can inherit all attributes by directly using v-bind="attrs"
This is the article about the inheritance of all the properties of vue3 v-bind="$attrs" in this article. For more related vue3 v-bind="$attrs" in inheriting component content, please search for my previous articles or continue browsing the related articles below. I hope everyone will support me in the future!