mirror of
https://github.com/kuaifan/dootask.git
synced 2026-04-05 04:00:09 +00:00
27 lines
413 B
Vue
27 lines
413 B
Vue
<template>
|
|
<div class="project-detail">
|
|
<PageTitle>{{ $L('项目面板') }}</PageTitle>
|
|
<Loading/>
|
|
project-detail
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
:global {
|
|
.project-detail {
|
|
background-image: url("../../../statics/images/loading.png");
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {}
|
|
},
|
|
mounted() {
|
|
|
|
},
|
|
}
|
|
</script>
|