Vue.js 예제 프로그램 만들기
Vue.js 예제 프로그램입니다. <!DOCTYPE html> <html> <head> <meta charset=”utf-8″ /> <script src=”https://unpkg.com/vue@3/dist/vue.global.js”></script> <title>Vue.js TEST</title> </head> <body> <h1>Vue.js Sample</h1> <p id=”app”>{{ message }}</p> <script> const { createApp, ref } = Vue; createApp({ setup() { const message = ref(‘Hello, world!’); return { message } } }).mount(‘#app’); </script> </body> </html> 5번 줄에서 Vue.js 프레임워크 로드를 위한 스크립트 파일을 … “Vue.js 예제 프로그램 만들기” 더 읽기