2016-11-10 02:38:11 +00:00
|
|
|
'use strict'
|
|
|
|
|
2016-11-07 01:34:58 +00:00
|
|
|
// The Vue build version to load with the `import` command
|
|
|
|
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
|
|
|
|
import Vue from 'vue'
|
2016-11-14 22:59:54 +00:00
|
|
|
import Meta from 'vue-meta/lib/vue-meta.js' // require the ES2015 lib
|
2016-11-07 01:34:58 +00:00
|
|
|
import router from './router'
|
2016-11-16 16:55:15 +00:00
|
|
|
<% if (store) { %>import store from '~store'<% } %>
|
2016-11-07 01:34:58 +00:00
|
|
|
|
2016-11-14 22:59:54 +00:00
|
|
|
Vue.use(Meta, {
|
|
|
|
keyName: 'head', // the component option name that vue-meta looks for meta info on.
|
|
|
|
attribute: 'n-head', // the attribute name vue-meta adds to the tags it observes
|
|
|
|
ssrAttribute: 'n-head-ssr', // the attribute name that lets vue-meta know that meta info has already been server-rendered
|
|
|
|
tagIDKeyName: 'hid' // the property name that vue-meta uses to determine whether to overwrite or append a tag
|
|
|
|
})
|
|
|
|
|
2016-11-08 01:57:55 +00:00
|
|
|
<% plugins.forEach(function (pluginPath) { %>
|
|
|
|
require('<%= pluginPath %>')
|
|
|
|
<% }) %>
|
2016-11-07 01:34:58 +00:00
|
|
|
|
|
|
|
import App from './App.vue'
|
|
|
|
// create the app instance.
|
|
|
|
// here we inject the router and store to all child components,
|
|
|
|
// making them available everywhere as `this.$router` and `this.$store`.
|
|
|
|
const app = {
|
|
|
|
router,
|
|
|
|
<%= (store ? 'store,' : '') %>
|
|
|
|
...App
|
|
|
|
}
|
|
|
|
|
|
|
|
export { app, router<%= (store ? ', store' : '') %> }
|