forked from iod/cpnode-front
17 lines
226 B
Vue
17 lines
226 B
Vue
<config>
|
|
{
|
|
"name": "repoManage",
|
|
"title": "数字对象仓库管理"
|
|
}
|
|
</config>
|
|
|
|
<template>
|
|
<div>
|
|
<h1>{{ re }}</h1>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const re = '数字对象仓库管理'
|
|
</script>
|