我的组件代码:
<v-select :options="options" label="title" class="select">
<template slot="option" slot-scope="option">
<span :class="option.icon"></span>
<img class="language-flag" :src="option.img" /> {{ option.title }}
</template>
<template slot="selected-option" slot-scope="option">
<span :class="option.icon"></span>
<img class="language-flag" :src="option.img" /> {{ option.title }}
</template>
</v-select>
脚本:
export default {
data() {
return {
options: [{
title: 'RU',
img: require('../../assets/icons/flags/RU.svg'),
},
{
title: 'KZ',
img: require('../../assets/icons/flags/KZ.svg')
},
],
}
},
}