I tried to defined a const
in a *.vue
file:
<script>
export const CREATE_ACTION = 1,
export const UPDATE_ACTION = 2
<script>
And use them in the template:
<template>
...
<select :disabled="mode === UPDATE_ACTION">
....
</template>
But it does not work. How can I use const
in a Vue template?