mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-10 03:16:44 +08:00
38 lines
733 B
Vue
38 lines
733 B
Vue
<!--
|
|
* @Author: lixg lixg@dongwu-inc.com
|
|
* @Date: 2022-11-16 21:01:51
|
|
* @LastEditors: lixg lixg@dongwu-inc.com
|
|
* @LastEditTime: 2022-11-16 21:10:02
|
|
* @FilePath: /fe-manage/src/views/examine/ProjectReviewedN.vue
|
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
-->
|
|
<template>
|
|
<div class="projectviewedn">
|
|
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { reactive, toRefs, } from "vue";
|
|
|
|
export default {
|
|
name: "ProjectViewedN",
|
|
|
|
setup() {
|
|
const state = reactive({
|
|
|
|
});
|
|
|
|
|
|
return {
|
|
...toRefs(state),
|
|
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
<style lang="scss">
|
|
.projectviewedn {
|
|
|
|
}
|
|
|
|
</style> |