[Vuejs]-Laravel-mix in Laravel-7 and vue.js error:(Uncaught Type Error: Cannot set property '$Gate' of undefined)

0👍

try this:

import Gate from "./Gate";

const $gate = new Gate(window.user);

Vue.prototype.$gate = $gate;

-1👍

You have to import Vue before calling prototype
by this command above your app.js:
import Vue from 'vue/dist/vue'

Leave a comment