Skip to content

Instantly share code, notes, and snippets.

@NightZpy
Created June 24, 2016 10:11
Show Gist options
  • Save NightZpy/12a9fd458d398fbf05f9229949c9e498 to your computer and use it in GitHub Desktop.
Save NightZpy/12a9fd458d398fbf05f9229949c9e498 to your computer and use it in GitHub Desktop.
<template>
<div id="myApp">
<v-select :value.sync="selected" :options="options"></v-select>
</div>
</template>
<script>
import vSelect from 'vue-select'
export default {
components: {vSelect},
data() {
return {
selected: null,
options: ['foo','bar','baz']
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment