Element-ui digunakan dalam projek Sebagai contoh, saya ingin menjana komponen N secara dinamik.
<template>
<p class="search" ref="search" v-html="sHtml">
</p>
</template>
<script type="text/javascript">
export default {
data() {
return {
sHtml: '',
}
},
props: {
con: {
type: Array
}
},
created() {
this.con.map((v, i) => {
this.sHtml += '<el-'+ v.type +' class="'+ v.style +'" placeholder="'+ v.placeholder +'" v-model="'+ v.name +'"></el-' + v.type +'>';
});
},
}
</skrip>
Adakah terdapat apa-apa cara untuk membuat pemalam elemen dipaparkan pada halaman?
Tidak boleh v-for terus di mana komponen dirujuk? .
Bolehkah anda lebih langsung, seperti
Menyusun html tidak disokong sekarang, tetapi ia boleh dilakukan dalam 1.0
Gunakan v-for terus untuk memaparkan komponen melalui data [array]
Anda boleh rujuk: https://cn.vuejs.org/v2/guide...Komponen dinamik