remove old notes and fix katex css
This commit is contained in:
@@ -17,6 +17,6 @@ const props = defineProps({
|
|||||||
></div>
|
></div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped>
|
<style>
|
||||||
@import "katex/dist/katex.min.css";
|
@import "katex/dist/katex.min.css";
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -29,16 +29,6 @@ const router = createRouter({
|
|||||||
name: "notes",
|
name: "notes",
|
||||||
component: () => import("../views/Notes.vue"),
|
component: () => import("../views/Notes.vue"),
|
||||||
},
|
},
|
||||||
{
|
|
||||||
path: "/notes/islp",
|
|
||||||
name: "islp",
|
|
||||||
component: () => import("../views/notes/Islp.vue"),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/notes/vue",
|
|
||||||
name: "vue",
|
|
||||||
component: () => import("../views/notes/Vue.vue"),
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
path: "/shrines",
|
path: "/shrines",
|
||||||
name: "shrine links",
|
name: "shrine links",
|
||||||
|
|||||||
@@ -1,18 +0,0 @@
|
|||||||
<template>
|
|
||||||
<main class="center-content flex-col">
|
|
||||||
<div class="a4page-portrait bdr-1 flex-col relative scroll-y">
|
|
||||||
<div class="bdr-primary">
|
|
||||||
<h1>Welcome to my ILSP notes</h1>
|
|
||||||
<p>
|
|
||||||
I'm taking up the course so that I can apply some machine
|
|
||||||
learning techniques to data involved in my personal
|
|
||||||
projects.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2>Chapter 2</h2>
|
|
||||||
<h3>Solutions</h3>
|
|
||||||
<p></p>
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
</template>
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import Markdown from "@/components/quick/Markdown.vue";
|
|
||||||
|
|
||||||
const source = `
|
|
||||||
The gaussian is $\\frac{1}{\\sqrt{2\\pi}}e^{-\\frac{x^2}{2}}$.
|
|
||||||
`;
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<main class="center-content flex-col">
|
|
||||||
<div class="a4page-portrait bdr-1 flex-col relative scroll-y">
|
|
||||||
<h1>These are my notes about Vue.js</h1>
|
|
||||||
<h1>Pinia</h1>
|
|
||||||
<Markdown :source="source" />
|
|
||||||
<h1>Composition API</h1>
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
</template>
|
|
||||||
Reference in New Issue
Block a user