Closed
Description
msg
doesn't change when input value changed
here is html
...
<script src="https://unpkg.com/vue@2.6.7/dist/vue.min.js"></script>
<script src="https://unpkg.com/docsify/lib/docsify.min.js"></script>
<script>
window.$docsify = {
executeScript: true,
}
</script>
...
here is README.md
# docsify
<div id="tony">
<div><input v-model="msg"></div>
<div>msg = {{msg}}</div>
</div>
<script>
new Vue({
el: '#tony',
data: {
msg: '123'
}
})
</script>