mirror of
https://gitee.com/dromara/go-view.git
synced 2025-10-14 14:32:10 +08:00
16 lines
302 B
Vue
16 lines
302 B
Vue
<template>
|
|
<div class="go-project-items">
|
|
<project-items-list></project-items-list>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ProjectItemsList } from './components/ProjectItemsList'
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@include go(project-items) {
|
|
padding: 30px 20px;
|
|
}
|
|
</style>
|