I'm loading a Vue component which should render a basic form. I'm trying to set the input to have a default value, but for some reason nothing shows. Here is what i tried:
<template>
...
<input type="text" value="0.02" class="form-control" v-model="amount">
...
</template>
Why does nothing show into the input field? Is it because Vue doesn't support it or i need to use something else? Thanks in advance
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…