this is my pug template
<template lang="pug">
div
form(
id="form"
method="POST"
action=""
)
div(class="form-data")
input(type="text" name="data" id="data" :value="data")
</template>
this is my vue data
data () {
return {
data: "1111"
}
}
but why is there no value rendered
js
Why is this happening? thank you all for giving me some help.