Merge branch 'dark' into develop

This commit is contained in:
就眠儀式
2022-03-30 23:11:25 +08:00
77 changed files with 297 additions and 291 deletions

View File

@@ -13,7 +13,7 @@ import {
ButtonSize,
ButtonType,
} from "./interface";
import { BooleanOrString, String } from "src/types";
import { BooleanOrString, String } from "../../types";
export interface LayButtonProps {
type?: ButtonType;

View File

@@ -7,7 +7,7 @@ export default {
<script setup lang="ts">
import { computed, useSlots } from "vue";
import "./index.less";
import { String } from "src/types";
import { String } from "../../types";
import { CardShadow } from "./interface";
const slot = useSlots();

View File

@@ -105,7 +105,7 @@ const handleClick = function () {
:lay-skin="skin"
>
<span v-if="$slots?.default"><slot></slot></span>
<i class="layui-icon layui-icon-ok"></i>
<i :class="{ 'layui-icon layui-icon-ok': isChecked }"></i>
</div>
</span>
</template>

View File

@@ -0,0 +1 @@
export type DatePickerType = "date" | "datetime" | "year" | "time" | "month";