我对 Vue.js 比较陌生,试图基于此自定义选择菜单创建一个 Vue 组件,并希望为每个列表项添加一个离子图标。
通常,我可以使用以下行在 Vue.js 中创建图标(使用相关的导入图标):
<component class="icon" :is="name-of-icon"></component>
但是,我试图复制的自定义选择菜单隐藏了默认select
元素,并动态添加了具有自定义 CSS 样式的自己的元素。
因此,以下不是解决方案,因为它要求我使用默认样式select
:
<option v-for="option in options" :value="option"> <component class="icon" :is="icon"></component <p>{{ option }}</p> </option>
相反,我尝试在设置图标样式时使用 jQuery 添加图标。将上述笔中的 jQuery 放入一个方法中style()
:
<template>
<select>
<option v-for="option in options" :value="option">
{{ option }}
</option>
</select>
</template>
<script>
import MdPersonIcon from 'vue-ionicons/dist/md-person.vue'
export default {
name: 'custom-select',
components: {MdPersonIcon},
methods: {
style() {
$('select').each(function () {
// rest of code from pen here
for (let i = 0; i < numberOfOptions; i++) {
let option = $('<li />', {
rel: $this.children('option').eq(i).val()
});
let text = $this.children('option').eq(i).text();
let $icon = $('<component>', {
'class': 'icon',
':is': 'md-person-icon',
});
let $label = $('<p>', {
text: text
});
$icon.appendTo(option);
$label.appendTo(option);
option.appendTo($list);
}
// rest of code from pen here
});
}
},
mounted() {
this.style();
}
}
该组件已替换为 ionicon。但是,检查元素显示组件未被替换:
<component class="icon" :is="md-person-icon"></component>
我不太清楚为什么会这样。
我知道我不应该尝试混合使用 jQuery 和 Vue,但我目前想不出另一种方法来创建自定义选择菜单 Vue 组件。
哆啦的时光机
相关分类