Newer
Older
urbanLifeline_YanAn / src / views / DialogTabs / component / ProContent.vue
@鲁yixuan 鲁yixuan on 9 Oct 293 bytes updata
<template>
  <div id="ProContent">项目内容</div>
</template>

<script setup name="ProContent">
import { ref, reactive, toRefs, onMounted } from 'vue';

onMounted(() => {});
</script>

<style lang="scss" scoped>
#ProContent {
  width: 100%;
  height: 100%;
  text-align: center;
}
</style>