global component
[issue link]How set global components on every pages?
nuxt.config.js
plugins: ['~/plugins/global.js']
plugins/global.js
import Vue from 'vue'
import Grids from '../components/Grids.vue'
Vue.component('grids', Grids)
pages/index.vue
<grids />
Error:
NuxtServerError
render function or template not defined in component: grids