Vue

by yusuke_ten

HTML

<div class="container">
  <div id="app">
    <h1>
      {{ hoge }}
    </h1>
  </div>

  <div id="app2">
    <h1>
      {{ fuga }}
    </h1>
  </div>
  
</div>

CSS

body {
  background: #20262E;
  padding: 20px;
  font-family: Helvetica;
}

.container {
  background: #eee;
  border-radius: 4px;
  padding: 20px;
  transition: all 0.2s;
}

#app {
  background: #fff;
  border-radius: 4px;
  padding: 20px;
  transition: all 0.2s;
}

#app2 {
  background: #fff;
  border-radius: 4px;
  padding: 20px;
  transition: all 0.2s;
}

li {
  margin: 8px 0;
}

h2 {
  font-weight: bold;
  margin-bottom: 15px;
}

del {
  color: rgba(0, 0, 0, 0.3);
}

Vue

new Vue({
  el: "#app",
  data:{
  	hoge:"嘘つけ絶対見てたぞ",
    fuga:"なんで見る必要なんてあるんですか"
  }
})