Vue SarahD 1

by hlim188

HTML

<div id="app">
  {{ text }} Nice to meet Vue.
</div>

CSS

body {
  font-family: 'Bitter', serif;
}

#app {
  text-align: center;
  padding: 70px;
  font-size: 22px;
  max-width: 360px;
  margin: 0 auto;
  display: table;
}

Vue

new Vue({
  el: '#app',
  data: {
    text: 'Hello Class!'
  }
});