Nuxt/lib/app/index.js

89 lines
2.9 KiB
JavaScript
Raw Normal View History

'use strict'
2016-11-07 01:34:58 +00:00
import Vue from 'vue'
2016-11-24 00:47:11 +00:00
import Meta from 'vue-meta'
2016-11-18 08:17:39 +00:00
import router from './router.js'
2016-12-25 20:16:30 +00:00
<% if (store) { %>import store from './store.js'<% } %>
2016-12-16 16:45:47 +00:00
import NuxtChild from './components/nuxt-child.js'
import NuxtLink from './components/nuxt-link.js'
import Nuxt from './components/nuxt.vue'
import App from '<%= appPath %>'
2016-12-13 16:42:41 +00:00
// Component: <nuxt-child>
Vue.component(NuxtChild.name, NuxtChild)
2016-12-16 16:45:47 +00:00
// Component: <nuxt-link>
Vue.component(NuxtLink.name, NuxtLink)
// Component: <nuxt>
Vue.component(Nuxt.name, Nuxt)
// vue-meta configuration
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-12-07 22:58:32 +00:00
if (process.BROWSER_BUILD) {
// window.onNuxtReady(() => console.log('Ready')) hook
// Useful for jsdom testing or plugins (https://github.com/tmpvar/jsdom#dealing-with-asynchronous-script-loading)
window._nuxtReadyCbs = []
window.onNuxtReady = function (cb) {
window._nuxtReadyCbs.push(cb)
}
}
// Includes external plugins
2016-11-08 01:57:55 +00:00
<% plugins.forEach(function (pluginPath) { %>
require('<%= pluginPath %>')
<% }) %>
2016-11-07 01:34:58 +00:00
// root instance
2016-11-07 01:34:58 +00:00
// here we inject the router and store to all child components,
// making them available everywhere as `this.$router` and `this.$store`.
const defaultTransition = <%=
serialize(transition)
.replace('beforeEnter(', 'function(').replace('enter(', 'function(').replace('afterEnter(', 'function(')
.replace('enterCancelled(', 'function(').replace('beforeLeave(', 'function(').replace('leave(', 'function(')
.replace('afterLeave(', 'function(').replace('leaveCancelled(', 'function(')
%>
2016-11-07 01:34:58 +00:00
const app = {
router,
<%= (store ? 'store,' : '') %>
_nuxt: {
2016-12-16 16:45:47 +00:00
defaultTransition: defaultTransition,
transitions: [ defaultTransition ],
setTransitions (transitions) {
if (!Array.isArray(transitions)) {
transitions = [ transitions ]
}
2016-12-16 16:45:47 +00:00
transitions = transitions.map((transition) => {
if (!transition) {
transition = defaultTransition
} else if (typeof transition === 'string') {
transition = Object.assign({}, defaultTransition, { name: transition })
} else {
transition = Object.assign({}, defaultTransition, transition)
}
return transition
})
this.$options._nuxt.transitions = transitions
return transitions
},
err: null,
2017-01-27 22:10:02 +00:00
dateErr: null,
error (err) {
err = err || null
2017-01-26 14:21:39 +00:00
if (typeof err === 'string') {
err = { statusCode: 500, message: err }
}
2017-01-27 22:10:02 +00:00
this.$options._nuxt.dateErr = Date.now()
this.$options._nuxt.err = err;
return err
}
},
2016-11-07 01:34:58 +00:00
...App
}
export { app, router<%= (store ? ', store' : '') %> }