LoginSignup
0
0

More than 1 year has passed since last update.

vue.jsの雛形

Last updated at Posted at 2023-03-28

タイトル通り、vue.jsの雛形です。
本当はその都度公式ドキュメントを開いて読みながら進めていくのがいいようです…!

・hemlの雛形にスクリプトタグを追加

index.html
<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <title>vue-todo</title>
    <link rel="stylesheet" href="css/styles.css">
</head>
<body>
    <div id="app">

    </div>
    <script src="js/main.js"></script>
    <script src="https://unpkg.com/vue@3.1.5"></script>
</body>
</html>

・main.jsは以下のように記述

main.js
const app = Vue.createApp({
    data: () =>({

    })
})
app.mount('#app')
0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0