Vue Overview
life cycle

Basic structure
<template>
<div></div>
</template>
<script>
export default {
name: '',
props: [...],
data() {
return {};
},
computed:{
...
}
methods: {
...
}
};
</script>
<style lang="css"></style>Basic vue function
v-bind
<option
v-for="(user, idx) in Users"
:key="idx"
:value="user.id"
@mousedown.prevent="multiSelectEvent"
>{{ user.name }}</option
>v-bind:value is equal to :value
