play.js 196 B

12345678910111213
  1. import Vue from 'vue'
  2. import Play from 'components/Play.vue'
  3. import store from "./store"
  4. new Vue({
  5. el: '#app',
  6. store,
  7. template: `<Play></Play>`,
  8. components: {
  9. Play
  10. }
  11. })