Browse Source

555

Hongxilin
donghaolin 5 months ago
parent
commit
070394732a
  1. 1
      vue/gold-system/src/router/index.js
  2. 13
      vue/gold-system/src/views/login.vue

1
vue/gold-system/src/router/index.js

@ -3,6 +3,7 @@ import { createRouter,createWebHashHistory } from 'vue-router';
const router=createRouter({
history:createWebHashHistory(),
routes:[
{path:'/login',component:()=>import("../views/login.vue")},
{path:'/',redirect:"/workspace"},
{
path:'/index',component:()=>import("../views/index.vue"),

13
vue/gold-system/src/views/login.vue

@ -0,0 +1,13 @@
<script setup></script>
<template>
<div class="background">
洪锡林大帅哥 董浩霖大帅哥 黄岐镇大帅哥 张鲁平大帅哥 吕丽娅大美女
</div>
</template>
<style scoped>
.background {
color: #fff;
text-align: center;
font-size: 24px;
}
</style>
Loading…
Cancel
Save