考虑下面的一个组件,它接受tag
作为道具。
<template>
<input v-model="model"/>
</template>
<script>
export default {
name: "InputComponent",
props: {
tag: {
type: String,
required: false,
default: null,
}
}
}
</script>
我想将道具div
作为tag
值传递,应该在下面返回 dom。
<div>
<input v-model="model"/>
</div>
使用组合 api 的解决方案是有优势的。