add index file of week 06

main
ohjian 2 years ago
parent bc567f81df
commit 40edd78efe

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://unpkg.com/vue@3"></script>
<link rel="stylesheet" href="style.css" />
<title>Diffractive reading</title>
</head>
<body>
<div id="app">
<a href="archive" class="archive">Archive</a>
<cookbook-form></cookbook-form>
<cookbook-recipes></cookbook-recipes>
</div>
<script type="module">
import CookbookForm from "./components/CookbookForm.js";
import CookbookRecipes from "./components/CookbookRecipes.js";
const { createApp } = Vue;
createApp({
components: { CookbookForm, CookbookRecipes },
}).mount("#app");
</script>
</body>
</html>
Loading…
Cancel
Save