송민준의 개발노트

라이프 사이클 본문

웹/Vue

라이프 사이클

송민준 2020. 1. 31. 15:05

index.html

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Vue Sample</title>
  </head>
  <body>
    <div id="app">
      {{ message }}
    </div>
    <script src="https://cdn.jsdelivr.net/npm/vue@2.5.2/dist/vue.js"></script>
    <script>
      new Vue({
        el: '#app',
        data : {
          message : 'Hello Vue.js!'
        },
        beforeCreate: function() {
          console.log("beforeCreate");
        },
        created: function() {
          console.log("created");
        },
        mounted: function() {
          console.log("mounted");
          this.message = "Hello Vue!";
        },
        updated: function() {
          console.log("updated");
        }
      });
    </script>
  </body>
</html>

Main.vue

<template lang="html">

</template>

<script>
export default {
}
</script>

<style lang="css" scoped>
</style>

' > Vue' 카테고리의 다른 글

뷰 템플릿  (0) 2020.02.09
뷰 리소스, 액시오스  (0) 2020.02.08
뷰 라우터  (0) 2020.02.02
컴포넌트 통신  (0) 2020.01.31
컴포넌트  (0) 2020.01.31