-<html>
- <head>
- <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
- </head>
- <body>
- <div id="app">
- {{ message }}
- </div>
+<!DOCTYPE html>
+
+<html>
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
+ <!-- vue 불러오기 -->
+ <script src="https://unpkg.com/vue"></script>
+ <title>schedule</title>
+ </head>
+ <body>
+ <div id = 'app'>
+ <p>[[ title ]]</p>
+ </div>
+ </body>
<script>
- var app = new Vue({
- el: '#app',
- data: {
- message: '안녕하세요 Vue!'
- }
+ new Vue({
+ delimiters: ['[[', ']]'],
+ el: '#app',
+ data: {
+ title: 'Welcome My Schedule',
+ }
})
</script>
- </body>
-</html>
+</html>
\ No newline at end of file