<el-checkbox-group v-model="languageForm.language" @change="onChange">
<div v-for="item in languageOptions" :key="item.key">
<el-checkbox :label="item.key" name="language">@{{item.title}}</el-checkbox>
</div>
</el-checkbox-group>
languageOptions: [
{
key: 'cn',
title: '簡體中文',
flag: 'http://www.nanodream.net/public/images/flag/cn.gif'
},
{
key: 'en',
title: '英語',
flag: 'http://www.nanodream.net/public/images/flag/en.gif'
},
{
key: 'fa',
title: '波斯語',
flag: 'http://www.nanodream.net/public/images/flag/fa.gif'
},
{
key: 'ar',
title: '阿拉伯語',
flag: 'http://www.nanodream.net/public/images/flag/ar.gif'
},
{
key: 'ms',
title: '馬來語',
flag: 'http://www.nanodream.net/public/images/flag/ms.gif'
},
{
key: 'bn',
title: '孟加拉語',
flag: 'http://www.nanodream.net/public/images/flag/bn.gif'
},
{
key: 'ur',
title: '烏爾都語',
flag: 'http://www.nanodream.net/public/images/flag/ur.gif'
},
{
key: 'tr',
title: '土耳其語',
flag: 'http://www.nanodream.net/public/images/flag/tr.gif'
},
{
key: 'id',
title: '印尼語',
flag: 'http://www.nanodream.net/public/images/flag/id.gif'
}
],