fix warning about custom component

merge-requests/1521/head
Henry Jameson 3 years ago
parent de2f968645
commit a3f48fc3f4

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

Loading…
Cancel
Save