Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>vue-slim-tabs demo</title>
  <link href="https://unpkg.com/vue-slim-tabs@0.4.0/themes/default.css" rel="stylesheet" />
</head>
<body>
  <div id="app">
  <tabs>
    <tab title="Vue">
      This is Vue
    </tab>
    <tab title="React">
      This is React
    </tab>
    <tab title="Svelte">
      This is Svelte
    </tab>
  </tabs>    
  </div>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.0.3/vue.js"></script>
  <script src="https://unpkg.com/vue-slim-tabs@0.4.0/dist/vue-slim-tabs.js"></script>
  <script>
    Vue.use(VueSlimTabs);
    var app = new Vue({
      el: '#app'
    });
  </script>
</body>
</html>
Output

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

Dismiss x
public
Bin info
darkthreadpro
0viewers