补充部分组件描述

This commit is contained in:
就眠儀式
2022-02-06 03:19:24 +08:00
parent a74c559fdd
commit 6e568f2d2f
94 changed files with 352 additions and 259 deletions

View File

@@ -7,7 +7,7 @@ export default {
<script setup lang="ts">
import { computed } from "vue";
const props = defineProps<{
export interface LayColProps {
md?: string;
xs?: string;
sm?: string;
@@ -15,8 +15,10 @@ const props = defineProps<{
mdOffset?: string;
xsOffset?: string;
smOffset?: string;
lgOffset?: string;
}>();
lgOffset?: string;
}
const props = defineProps<LayColProps>();
const classes = computed(() => {
return [

View File