1
0

app.js 220 B

123456789101112
  1. import Vue from 'vue'
  2. import App from './components/App.vue'
  3. import store from './store'
  4. import { currency } from './currency'
  5. Vue.filter('currency', currency)
  6. new Vue({
  7. el: '#app',
  8. store,
  9. render: h => h(App)
  10. })