2022-08-06 16:08:47 +08:00

17 lines
496 B
Vue

<template>
<div text-center flex-col-center wh-full>
<h1 font="bold" text-5xl>{{ msg }}</h1>
<div m-10>
Already configured: vue3vite3unocsseslintprettiertstsxconventionalhusklint-stagedvue-router
</div>
<div c-lightBlue><router-link to="/">Go to layout</router-link></div>
</div>
</template>
<script setup lang="ts">
import { ref } from 'vue';
const msg = ref('It is just a blank template.');
</script>
<style lang="less" scoped></style>