DOBROMIR HRISTOV
@d_m_hristov
Put your page/slide text here. The text should be no less than 160% scale to make sure it is readable.
Make sure paragraphs are short and concise to keep user attention.
This kind of page is mostly used for when you have a bit more text that you want to convey with some image on the side.
<div id="app">
<div>
{{ vueText }}
</div>
<input type="text" v-model="vueText">
</div>
Use underlines to create visual connection between parts of code and visual representation
<form>
<label>Recipe Name</label>
<input v-model="form.name" type="text">
<label>Portions</label>
<input
v-model="form.portions"
type="number">
<label>Vegan
<input
v-model="form.isVegan"
type="checkbox">
</label>
<label>Difficulity</label>
<input
v-model="form.difficulity"
type="range">
</form>
<button @click="counter++">
Increment
</button>