“$attrs is readonly”,“$listeners is readonly”,“Avoid mutating a prop directly”

前端 未结 6 1844
后悔当初
后悔当初 2021-01-08 00:08

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

6条回答
  •  长发绾君心
    2021-01-08 00:33

    Adding this to vue.config.js, worked for me.

    const path = require('path')
    
    module.exports = {
      configureWebpack: {
        externals: {
          vue: 'Vue'
        }
      }
    }
    

提交回复
热议问题