feat: 更新包版本

This commit is contained in:
alger kong
2023-07-29 15:08:41 +08:00
parent e74d1bbae9
commit 4da58ef70d
6 changed files with 3012 additions and 2086 deletions
+10
View File
@@ -39,6 +39,16 @@ const layoutRouter = [
},
component: () => import("@/views/user/index.vue"),
},
{
path: "/test",
name: "test",
mate: {
title: "用户",
keepAlive: true,
icon: "icon-Profile",
},
component: () => import("@/views/test/test.vue"),
},
];
export default layoutRouter;
+21
View File
@@ -0,0 +1,21 @@
<template>
<div class="p-4">
<div class="box"></div>
</div>
</template>
<script lang="ts" setup>
</script>
<style lang="scss" scoped>
.box{
width: 100px;
height: 100px;
background-image: url(http://p2.music.126.net/w_vuv9hBWq2hlJxJcmJrjg==/109951166115915081.jpg?param=500y500);
background-size: 100%;
background-repeat: no-repeat;
}
</style>