LoginSignup
1
0

More than 1 year has passed since last update.

インスタンス外からdataを設定する

Last updated at Posted at 2021-05-07
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<body>
  <script src="https://cdn.jsdelivr.net/npm/vue@2.6.12/dist/vue.js"></script>
  <div id="app1">
     <p>{{message}}</p>
     <p>{{name}}</p>
  </div>
<script>
  var data = {
    message: 'こんにちは',
    name: '前田'
  }
  var vm1 = new Vue({
    el: '#app1',
    data: data
  })
</script>
</body>
</html>

20210507-215518.png

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