LoginSignup
1
0

More than 5 years have passed since last update.

とりあえずVue.jsをJavaプロジェクトで動かす

Posted at

Vue.js公式リファレンスが日本語で丁寧に作られていてわかりやすいので、基本はリファレンスを見ると良いです

test.html
<body>
  <script src="https://unpkg.com/vue"></script>
  <div id="app">
    <input v-model="yourName" />
    <span>Hello, {{ yourName }}!</span>
  </div>
 <script>
    new Vue({
      'el': '#app',
      data: { yourName: 'World' }
    })
  </script>
</body>

これだけで動きます。
上記以外の書き方は公式リファレンスを参考にしましょう

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0