Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
  <script src="//cdn.bootcss.com/vue/2.3.4/vue.min.js"></script>
</head>
<body>
  <div id="app"></div>
</body>
</html>
 
Vue.component('test-component', {
  template: `<div>{{ value }}</div>`,
  data() {
    return {
      value: 1
    }
  },
});
new Vue({
  el: '#app',
  template: '<test-component></test-component>'
})
Output

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

Dismiss x