It's my new blog:
Technologies what I use:
- Vue
- Vue Router
- Custom CSS (I write these in one night!) 🙃
- Images from Freepik (I'll write the attribution soon)
You can fork this from my Github repo:
mzaini30
/
mzaini30.github.io
Website ini berisi dengan berbagai proyek yang telah aku kerjakan.
Vue Starter
Usibg Vue Editor
Add in ~/.bashrc
:
export VUE_EDITOR=subl
Place Vue Files and Markdown
In src/pages/
.
Place Static Files
In public/
.
Modify Base URL (for sitemap)
In vite.config.js
, in section:
const hostname = 'http://localhost:3000/'
Markdown File Example with Head
---
title: About
---
# This is about page
Good
Link to Other Page
<router-link to="/about">About page</router-link>
Using Head in Vue Page
<script setup="">
import {Head} from '@vueuse/head'
</script>
<template>
<Head>
<title>Hi...</title>
</Head>
<p>This is home</p>
</template>
Top comments (0)