fix: use compiler object

This commit is contained in:
Igor Randjelovic
2020-11-22 13:18:37 +01:00
committed by Nathan Walker
parent d28afde904
commit 96799ac174
3 changed files with 18 additions and 8 deletions

View File

@@ -120,7 +120,12 @@ exports[`vue configuration for android 1`] = `
{
loader: 'vue-loader',
options: {
compiler: 'nativescript-vue-template-compiler'
compiler: {
compile: function () { /* omitted long function */ },
compileToFunctions: function () { /* omitted long function */ },
parseComponent: function () { /* omitted long function */ },
registerElement: function () { /* omitted long function */ }
}
}
}
]
@@ -312,7 +317,12 @@ exports[`vue configuration for ios 1`] = `
{
loader: 'vue-loader',
options: {
compiler: 'nativescript-vue-template-compiler'
compiler: {
compile: function () { /* omitted long function */ },
compileToFunctions: function () { /* omitted long function */ },
parseComponent: function () { /* omitted long function */ },
registerElement: function () { /* omitted long function */ }
}
}
}
]