22 lines
306 B
Vue
22 lines
306 B
Vue
<template>
|
|
<div>
|
|
<Card title="进度管理">
|
|
<div class="contentBox">
|
|
123
|
|
</div>
|
|
</Card>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Card from '../components/Card'
|
|
export default {
|
|
components: { Card },
|
|
data() {
|
|
return {}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped></style>
|