保存进度!
This commit is contained in:
@@ -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>
|
||||
|
||||
|
Reference in New Issue
Block a user