app.js 173 B

123456789
  1. import Vue from 'vue'
  2. import store from './store'
  3. import CounterControls from './CounterControls.vue'
  4. new Vue({
  5. el: '#app',
  6. store,
  7. render: h => h(CounterControls)
  8. })