I am new to Vue. I am trying to develop a chatting application where friend list will be shown on the left menu and the chat box will be shown at the body. I am loading frie
Adding this to vue.config.js, worked for me.
const path = require('path') module.exports = { configureWebpack: { externals: { vue: 'Vue' } } }