4 changed files with 56 additions and 50 deletions
@ -1,18 +1,18 @@ |
|||||
<!DOCTYPE html> |
<!DOCTYPE html> |
||||
<html lang=""> |
<html lang=""> |
||||
<head> |
<head> |
||||
<meta charset="UTF-8"> |
<meta charset="UTF-8"> |
||||
<link rel="icon" href="/favicon.svg" type="image/svg+xml"> |
<link rel="icon" href="/favicon.svg" type="image/svg+xml"> |
||||
<link rel="alternate icon" href="/favicon.ico"> |
<link rel="alternate icon" href="/favicon.ico"> |
||||
<link rel="apple-touch-icon" href="/favicon.svg"> |
<link rel="apple-touch-icon" href="/favicon.svg"> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
||||
<meta name="description" content="回声 - 专业的网络镜像站点服务提供商,提供高速、稳定、安全的镜像服务"> |
<meta name="description" content="回声 - 专业的网络镜像站点服务提供商,提供高速、稳定、安全的镜像服务"> |
||||
<meta name="keywords" content="镜像服务,网络镜像,CDN,高速下载,稳定服务"> |
<meta name="keywords" content="镜像服务,网络镜像,CDN,高速下载,稳定服务"> |
||||
<title>青岛市免租金住房保障平台</title> |
<title>青岛市免租金住房保障平台</title> |
||||
<script type="module" crossorigin src="/epmet-apartment-front/static/index--uDGezSJ.js"></script> |
<script type="module" crossorigin src="/epmet-apartment-front/static/index-B_OPdPVI.js"></script> |
||||
<link rel="stylesheet" crossorigin href="/epmet-apartment-front/static/index-BdtwzmXj.css"> |
<link rel="stylesheet" crossorigin href="/epmet-apartment-front/static/index-XAiPaCqV.css"> |
||||
</head> |
</head> |
||||
<body> |
<body> |
||||
<div id="app"></div> |
<div id="app"></div> |
||||
</body> |
</body> |
||||
</html> |
</html> |
||||
|
@ -1,32 +1,32 @@ |
|||||
import { createRouter, createWebHashHistory } from 'vue-router' |
import { createRouter, createWebHashHistory } from "vue-router"; |
||||
import Home from '../views/Home.vue' |
import Home from "../views/Home.vue"; |
||||
import Policy from '../views/policy/index.vue' |
import Policy from "../views/policy/index.vue"; |
||||
import Showings from '../views/showings/index.vue' |
import Showings from "../views/showings/index.vue"; |
||||
import HouseDetail from '../views/showings/houseDetail.vue' |
import HouseDetail from "../views/showings/houseDetail.vue"; |
||||
const router = createRouter({ |
const router = createRouter({ |
||||
history: createWebHashHistory(import.meta.env.BASE_URL), |
history: createWebHashHistory(import.meta.env.BASE_URL), |
||||
routes: [ |
routes: [ |
||||
{ |
{ |
||||
path: '/', |
path: "/home", |
||||
name: 'home', |
name: "home", |
||||
component: Home |
component: Home, |
||||
}, |
}, |
||||
{ |
{ |
||||
path: '/Showings', |
path: "/Showings", |
||||
name: 'Showings', |
name: "Showings", |
||||
component: Showings |
component: Showings, |
||||
}, |
}, |
||||
{ |
{ |
||||
path: '/Policy', |
path: "/", |
||||
name: 'Policy', |
name: "Policy", |
||||
component: Policy |
component: Policy, |
||||
}, |
}, |
||||
{ |
{ |
||||
path: '/HouseDetail', |
path: "/HouseDetail", |
||||
name: 'HouseDetail', |
name: "HouseDetail", |
||||
component: HouseDetail |
component: HouseDetail, |
||||
}, |
}, |
||||
] |
], |
||||
}) |
}); |
||||
|
|
||||
export default router |
export default router; |
||||
|
Loading…
Reference in new issue