This commit is contained in:
2022-11-14 11:56:21 +08:00
commit 0a63adba99
337 changed files with 25661 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<script lang="ts">
export default {
name: "LayQuote",
};
</script>
<script setup lang="ts">
import "./index.less";
export interface QuoteProps {
type?: string;
}
const props = defineProps<QuoteProps>();
</script>
<template>
<div class="layui-quote" :class="[type ? `layui-quote-${props.type}` : '']">
<slot></slot>
</div>
</template>