mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-06-13 09:02:24 +03:00
use object-assign ponyfill
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
import assign from 'object-assign'
|
||||
import Vue from 'vue'
|
||||
import store from './store'
|
||||
import router from './router'
|
||||
import App from './App.vue'
|
||||
|
||||
const app = new Vue(Object.assign(App, { router, store }))
|
||||
const app = new Vue(assign(App, { router, store }))
|
||||
|
||||
app.$mount('#app')
|
||||
|
||||
Reference in New Issue
Block a user