delete index file week 06
parent
40edd78efe
commit
55e8ca86ee
@ -1,27 +0,0 @@
|
|||||||
<!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…
Reference in New Issue