fix warning about custom component

This commit is contained in:
Henry Jameson 2022-03-29 19:55:30 +03:00
parent de2f968645
commit a3f48fc3f4
1 changed files with 6 additions and 0 deletions

View File

@ -64,6 +64,12 @@ module.exports = {
loader: 'vue-loader',
options: {
compilerOptions: {
isCustomElement(tag) {
if (tag === 'pinch-zoom') {
return true
}
return false
},
compatConfig: {
MODE: 2
}