// <template>
// <p>Install from GitHub via NPM</p>
// <pre><v-code lang="bash">npm install sagalbot/vue-select</v-code></pre>
//
// <p>To use the vue-select component in your templates, simply import it, and register it with your component.</p>
// <pre><v-code lang="markup"><template>
// <div id="myApp">
// <v-select :value.sync="selected" :options="options"></v-select>
// </div>
// </template>
// <script></v-code>
// <v-code lang="javascript">import vSelect from "vue-select"
// export default {
// components: {vSelect},
//
// data() {
// return {
// selected: null,
// options: ['foo','bar','baz']
// }
// }
// }
// </script></v-code>
// </pre>
// </template>
// <script type="text/babel">
import vCode from '../Code.vue'
export default {
components: {vCode}
}
// </script>
/* generated by vue-loader */
|