Home

Issue: 1405

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

Not working ((

How fix this

This question is available on Nuxt.js community (#c1247)