24 lines
377 B
Vue
24 lines
377 B
Vue
|
<!--
|
||
|
* @Author: Kane
|
||
|
* @Date: 2023-01-06 20:33:57
|
||
|
* @LastEditors: Kane
|
||
|
* @LastEditTime: 2023-01-06 20:42:29
|
||
|
* @FilePath: \admin_system\src\components\svg\SvgIcon.vue
|
||
|
* @Description:
|
||
|
*
|
||
|
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||
|
-->
|
||
|
<template>
|
||
|
svg-icon
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "svg-icon",
|
||
|
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|