Created
August 2, 2018 06:16
-
-
Save slmanju/a734e9c561e44d5ead7e59e777dcbd2f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div id="todo" class="box"> | |
<div> | |
<label for="title">Title</label> | |
<input type="text" id="title" v-model="title" /> | |
</div> | |
<div> | |
<label for="description">Description</label> | |
<input type="text" id="description" v-model="description" /> | |
</div> | |
<div> | |
<button @click="save">Add</button> | |
</div> | |
</div> | |
</template> | |
<script> | |
export default { | |
data() { | |
return { | |
title: '', | |
description: '' | |
} | |
}, | |
methods: { | |
save() { | |
console.log(this.title, this.description); | |
this.title = ''; | |
this.description = ''; | |
} | |
} | |
} | |
</script> | |
<style> | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment