保存进度!

This commit is contained in:
2023-01-08 11:52:15 +08:00
parent 922fb4ca4a
commit aa20111600
3 changed files with 32 additions and 15 deletions

View File

@@ -2,20 +2,31 @@
* @Author: Kane
* @Date: 2023-01-06 19:05:53
* @LastEditors: Kane
* @LastEditTime: 2023-01-07 17:12:25
* @LastEditTime: 2023-01-08 11:18:12
* @FilePath: \admin_system\src\views\news\NewsEdit.vue
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
-->
<template>
信息编辑
信息编辑:{{ getCount }}
<br>
<SvgIcon icon="house"></SvgIcon>
</template>
<script>
import { useStore } from "vuex";
export default {
name: "NewsEdit"
name: "NewsEdit",
computed: {
getCount()
{
const store = useStore();
return store.state.app.count;
},
},
};
</script>