Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://unpkg.com/vue@2.1.10"></script>
<script src="http://unpkg.com/vue-select@2.0.0"></script>
<link href="http://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 id="app" 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: '#app'
});
Output

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

Dismiss x
public
Bin info
sagalbotpro
0viewers