保存进度!
This commit is contained in:
@@ -2,20 +2,32 @@
|
||||
* @Author: Kane
|
||||
* @Date: 2023-01-06 20:33:57
|
||||
* @LastEditors: Kane
|
||||
* @LastEditTime: 2023-01-06 20:42:29
|
||||
* @LastEditTime: 2023-01-07 17:10:07
|
||||
* @FilePath: \admin_system\src\components\svg\SvgIcon.vue
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
-->
|
||||
<template>
|
||||
svg-icon
|
||||
svg-icon:{{ this.iconName }}
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "svg-icon",
|
||||
|
||||
data()
|
||||
{
|
||||
return {
|
||||
iconName: ""
|
||||
};
|
||||
},
|
||||
props: ["icon"],
|
||||
created()
|
||||
{
|
||||
console.log("svg");
|
||||
console.log(this.icon);
|
||||
this.iconName = this.icon;
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
|
@@ -2,14 +2,14 @@
|
||||
* @Author: Kane
|
||||
* @Date: 2023-01-04 11:30:33
|
||||
* @LastEditors: Kane
|
||||
* @LastEditTime: 2023-01-07 11:53:26
|
||||
* @LastEditTime: 2023-01-07 16:44:11
|
||||
* @FilePath: \admin_system\src\layout\components\Aside.vue
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
-->
|
||||
<template>
|
||||
<el-menu id="side-bar" router default-active="/desktop" unique-opened="true" background-color="#223142"
|
||||
<el-menu id="side-bar" router default-active="/desktop" unique-opened=true background-color="#223142"
|
||||
text-color="#fff" active-text-color="#ffd04b">
|
||||
<template v-for="route in this.routers" :key="route.path">
|
||||
<template v-if="!route.hidden">
|
||||
|
@@ -31,7 +31,7 @@ export default {
|
||||
// },
|
||||
mounted()
|
||||
{
|
||||
console.log("banner请求数据!");
|
||||
//console.log("banner请求数据!");
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
@@ -2,7 +2,7 @@
|
||||
* @Author: Kane
|
||||
* @Date: 2022-12-14 15:12:46
|
||||
* @LastEditors: Kane
|
||||
* @LastEditTime: 2023-01-07 15:03:29
|
||||
* @LastEditTime: 2023-01-07 16:44:45
|
||||
* @FilePath: \admin_system\src\main.js
|
||||
* @Description:
|
||||
*
|
||||
|
@@ -2,7 +2,7 @@
|
||||
* @Author: Kane
|
||||
* @Date: 2023-01-06 19:05:53
|
||||
* @LastEditors: Kane
|
||||
* @LastEditTime: 2023-01-06 20:44:41
|
||||
* @LastEditTime: 2023-01-07 17:12:25
|
||||
* @FilePath: \admin_system\src\views\news\NewsEdit.vue
|
||||
* @Description:
|
||||
*
|
||||
@@ -10,7 +10,7 @@
|
||||
-->
|
||||
<template>
|
||||
信息编辑
|
||||
<SvgIcon></SvgIcon>
|
||||
<SvgIcon icon="house"></SvgIcon>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
Reference in New Issue
Block a user