Tutorial | Vue.js

1. 시작하기

App.vue

<template>
  <h1>안녕 Vue!</h1>
</template>

Untitled

2. 선언적 렌더링

SFC는 HTML, CSS, JavaScript를 캡슐화한 코드 블록으로 재사용 가능한 .vue 파일이다.

import { reactive } from 'vue'

const counter = reactive({
  count: 0
})

console.log(counter.count) // 0
counter.count++