所以我用vuetify與VUE-CLI,這是我的電流分量代碼:如何將指令綁定到VueJS中的自定義組件?
<template>
<div>
<v-row>
<v-col xl3 md3 xs12>
<strong>{{field}}</strong>
</v-col>
<v-col xl9 md9 xs12>
{{value}}
</v-col>
</v-row>
</div>
</template>
<script>
export default {
data() {
return {
}
},
props: ['field', 'value']
}
</script>
,我使用它在我的模板,這樣
<template>
<two-column field="Some Field" value="Some Value"></two-column>
</template>
<script>
import TwoColumnRow from './vuetify_modifications/TwoColumnRow'
...
</script>
現在一切都完美地工作,但如果我想使網格大小動態?例如像我喜歡的東西
<two-column field="Some Field" value="Some Value" sizes="xl3 md3 xs12"></two-column>
做這可能嗎?先謝謝你。
請你放的jsfiddle你的榜樣 –