Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/1.0.16/vue.js"></script>
<script src="https://npmcdn.com/vue-select@latest"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" />  
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <div class="container-fluid">
    <h2>VueSelect Basic Example</h2>
    <v-select :options="['foo','bar','baz']"></v-select>
  </div>
</body>
</html>
 
Vue.component('v-select', VueSelect.VueSelect);
new Vue({
  el: 'body'
});
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
sagalbotpro
0viewers