mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
22 lines
669 B
JavaScript
22 lines
669 B
JavaScript
// 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'
|
|
import router from './router'
|
|
<% if (store && storePath) { %>import store from '<%= storePath %>'<% } %>
|
|
|
|
<% plugins.forEach(function (pluginPath) { %>
|
|
require('<%= pluginPath %>')
|
|
<% }) %>
|
|
|
|
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' : '') %> }
|