2020-12-05から1日間の記事一覧

Vue.js学習メモ

<index.html> <html lang="ja"> <head> <meta charset="UTF-8"> <title>My Vue App</title> <link rel="stylesheet" href="css/styles.css"> </head> <body> <div id="app"> <p>Hello {{ name.toUpperCase() }}!</p> <p><input type="text" v-model="name"></p> </div> </body></html></index.html>