Disabled experimental template support
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Joan Sanchez 2022-04-19 12:55:12 +02:00
parent a60351a0e9
commit 38f0c89fbd
2 changed files with 11 additions and 1 deletions

View File

@ -14,5 +14,7 @@
}
},
"exclude": ["dist", ".quasar", "node_modules"],
"vueCompilerOptions.experimentalDisableTemplateSupport": "disable"
"vueCompilerOptions": {
"experimentalDisableTemplateSupport": true
}
}

View File

@ -25,6 +25,14 @@ export default {
},
component: () => import('src/pages/Customer/CustomerList.vue'),
},
{
path: 'create',
name: 'CustomerCreate',
meta: {
title: 'create'
},
component: () => import('src/pages/Customer/CustomerCreate.vue'),
},
]
},
{