This commit is contained in:
unknown 2023-11-22 11:01:34 +08:00
parent 3d74b42dc9
commit 020d89690f
18 changed files with 567 additions and 4 deletions

View File

@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"baseUrl": "./",
"moduleResolution": "node",
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
}
}

View File

@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"baseUrl": "./",
"moduleResolution": "node",
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
}
}

View File

@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"baseUrl": "./",
"moduleResolution": "node",
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
}
}

View File

@ -0,0 +1,23 @@
<template>
<div class="home">
<p>11111111111</p>
<RouterView />
</div>
</template>
<script>
import { RouterView } from "vue-router";
export default {
name: "index",
components: { RouterView },
};
</script>
<style scoped>
p {
font-size: 20px;
width: 100px;
height: 100px;
background-color: red;
}
</style>

View File

@ -0,0 +1,31 @@
<template>
<div>
<div class="header">
</div>
<div class="home">
<p>11111111111</p>
<RouterView />
</div>
<div class="footer">
</div>
</div>
</template>
<script>
import { RouterView } from "vue-router";
export default {
name: "index",
components: { RouterView },
};
</script>
<style scoped>
p {
font-size: 20px;
width: 100px;
height: 100px;
background-color: red;
}
</style>

View File

@ -0,0 +1,31 @@
<template>
<div>
<div class="header">
头部
</div>
<div class="home">
<p>11111111111</p>
<RouterView />
</div>
<div class="footer">
</div>
</div>
</template>
<script>
import { RouterView } from "vue-router";
export default {
name: "index",
components: { RouterView },
};
</script>
<style scoped>
p {
font-size: 20px;
width: 100px;
height: 100px;
background-color: red;
}
</style>

View File

@ -0,0 +1,31 @@
<template>
<div>
<div class="header">
头部
</div>
<div class="home">
<p>11111111111</p>
<RouterView />
</div>
<div class="footer">
底部
</div>
</div>
</template>
<script>
import { RouterView } from "vue-router";
export default {
name: "index",
components: { RouterView },
};
</script>
<style scoped>
p {
font-size: 20px;
width: 100px;
height: 100px;
background-color: red;
}
</style>

View File

@ -0,0 +1,32 @@
<template>
<div>
<div class="header">
头部
</div>
<div class="home">
<p>11111111111</p>
<RouterView />
</div>
<div class="footer">
底部
</div>
</div>
</template>
<script>
import { RouterView } from "vue-router";
export default {
name: "index",
components: { RouterView },
};
</script>
<style scoped>
p {
font-size: 20px;
width: 100px;
height: 100px;
background-color: red;
}
</style>

View File

@ -0,0 +1,36 @@
<template>
<div>
<div class="header">
头部
</div>
<div class="home">
<p>11111111111</p>
<RouterView />
</div>
<div class="footer">
底部
</div>
</div>
</template>
<script>
import { RouterView } from "vue-router";
export default {
name: "index",
components: { RouterView },
};
</script>
<style scoped>
.header{
width: 100%;
height: 4%;
color: black;
}
p {
font-size: 20px;
width: 100px;
height: 100px;
background-color: red;
}
</style>

View File

@ -0,0 +1,41 @@
<template>
<div>
<div class="header">
头部
</div>
<div class="home">
<p>11111111111</p>
<RouterView />
</div>
<div class="footer">
底部
</div>
</div>
</template>
<script>
import { RouterView } from "vue-router";
export default {
name: "index",
components: { RouterView },
};
</script>
<style scoped>
.header {
width: 100%;
height: 4%;
color: black;
}
.footer {
width: 100%;
height: 4%;
color: black;
}
p {
font-size: 20px;
width: 100px;
height: 100px;
background-color: red;
}
</style>

View File

@ -0,0 +1,41 @@
<template>
<div>
<div class="header">
<p>头部</p>
</div>
<div class="home">
<p>11111111111</p>
<RouterView />
</div>
<div class="footer">
<p>底部</p>
</div>
</div>
</template>
<script>
import { RouterView } from "vue-router";
export default {
name: "index",
components: { RouterView },
};
</script>
<style scoped>
.header {
width: 100%;
height: 4%;
color: black;
}
.footer {
width: 100%;
height: 4%;
color: black;
}
p {
font-size: 20px;
width: 100px;
height: 100px;
background-color: red;
}
</style>

View File

@ -0,0 +1,43 @@
<template>
<div>
<div class="header">
<p>头部</p>
</div>
<div class="home">
<p>11111111111</p>
<RouterView />
</div>
<div class="footer">
<p>底部</p>
</div>
</div>
</template>
<script>
import { RouterView } from "vue-router";
export default {
name: "index",
components: { RouterView },
};
</script>
<style scoped>
.header {
width: 100%;
height: 4%;
color: black;
}
.footer {
width: 100%;
height: 4%;
color: black;
}
p {
font-size: 20px;
width: 100px;
height: 100px;
background-color: red;
}
</style>

View File

@ -0,0 +1,43 @@
<template>
<div>
<div class="header">
头部
</div>
<div class="home">
<p>11111111111</p>
<RouterView />
</div>
<div class="footer">
底部
</div>
</div>
</template>
<script>
import { RouterView } from "vue-router";
export default {
name: "index",
components: { RouterView },
};
</script>
<style scoped>
.header {
width: 100%;
height: 4%;
color: black;
}
.footer {
width: 100%;
height: 4%;
color: black;
}
p {
font-size: 20px;
width: 100px;
height: 100px;
background-color: red;
}
</style>

View File

@ -0,0 +1,43 @@
<template>
<div>
<div class="header">
头部
</div>
<div class="home">
<p>11111111111</p>
<RouterView />
</div>
<div class="footer">
底部
</div>
</div>
</template>
<script>
import { RouterView } from "vue-router";
export default {
name: "index",
components: { RouterView },
};
</script>
<style scoped>
.header {
width: 100%;
height: 4%;
color: black;
}
.footer {
width: 100%;
height: 4%;
color: black;
}
p {
font-size: 20px;
width: 100px;
height: 100px;
background-color: red;
}
</style>

View File

@ -0,0 +1,44 @@
<template>
<div>
<div class="header">
头部
</div>
<div class="home">
<p>11111111111</p>
<RouterView />
</div>
<div class="footer">
底部
</div>
</div>
</template>
<script>
import { RouterView } from "vue-router";
export default {
name: "index",
components: { RouterView },
};
</script>
<style scoped>
.header {
width: 100%;
height: 4%;
color: black;
font-size: 18px;
}
.footer {
width: 100%;
height: 4%;
color: black;
}
p {
font-size: 20px;
width: 100px;
height: 100px;
background-color: red;
}
</style>

View File

@ -0,0 +1,45 @@
<template>
<div>
<div class="header">
头部
</div>
<div class="home">
<p>11111111111</p>
<RouterView />
</div>
<div class="footer">
底部
</div>
</div>
</template>
<script>
import { RouterView } from "vue-router";
export default {
name: "index",
components: { RouterView },
};
</script>
<style scoped>
.header {
width: 100%;
height: 4%;
color: black;
font-size: 18px;
}
.footer {
width: 100%;
height: 4%;
color: black;
font-size: 18px;
}
p {
font-size: 20px;
width: 100px;
height: 100px;
background-color: red;
}
</style>

View File

@ -1,8 +1,16 @@
<template>
<div>
<div class="header">
头部
</div>
<div class="home">
<p>11111111111</p>
<RouterView />
</div>
<div class="footer">
底部
</div>
</div>
</template>
<script>
@ -14,6 +22,20 @@ export default {
};
</script>
<style scoped>
.header {
width: 100%;
height: 4%;
color: black;
font-size: 18px;
}
.footer {
width: 100%;
height: 4%;
color: black;
font-size: 18px;
}
p {
font-size: 20px;
width: 100px;