import Vue from 'vue'
import Counter from './Counter.vue'

new Vue({
  el: 'body',
  components: { Counter }
})