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