fix warning about custom component

このコミットが含まれているのは:
Henry Jameson 2022-03-29 19:55:30 +03:00
コミット a3f48fc3f4
1個のファイルの変更6行の追加0行の削除

ファイルの表示

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