Skip to content

Instantly share code, notes, and snippets.

@webloglife
Created February 21, 2018 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webloglife/f24815658c665f8175a192f255f27dfc to your computer and use it in GitHub Desktop.
Save webloglife/f24815658c665f8175a192f255f27dfc to your computer and use it in GitHub Desktop.
<div id="app">
<p>メッセージ: {{ message }} </p> <input v-model="message" placeholder="入力してください">
</div>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script>
new Vue({
el: '#app',
data: {
message: ''
}
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment