8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91f581b commit 4f15cbaCopy full SHA for 4f15cba
example/TypeScript.vue
@@ -4,5 +4,5 @@ const a: Ref<number> = ref(12)
4
</script>
5
6
<template>
7
- <p @click="a++">From TSssss: {{ a.toFixed(2) }}</p>
+ <p @click="a++">From TSssss: {{ a?.toFixed(2) }}</p>
8
</template>
example/webpack.config.js
@@ -55,7 +55,7 @@ module.exports = (env = {}) => {
55
loader: 'vue-loader',
56
options: {
57
refSugar: true,
58
- enableTsInTemplate: false,
+ // enableTsInTemplate: false,
59
},
60
61
{
0 commit comments