🐛(table): 修复 table 按需加载时无法正常加载 checkbox 组件

更新文档
This commit is contained in:
就眠儀式 2022-06-12 22:11:51 +08:00
parent 76e512823a
commit e24a5fa681
3 changed files with 7 additions and 5 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@layui/layui-vue",
"version": "1.1.6",
"version": "1.1.7-alpha.1",
"author": "就眠儀式",
"license": "MIT",
"description": "a component library for Vue 3 base on layui-vue",

View File

@ -5,8 +5,11 @@ export default {
</script>
<script lang="ts" setup>
import { computed, ref, useSlots, WritableComputedRef } from "vue";
import { Recordable } from "../../types";
import { computed, ref, useSlots, WritableComputedRef } from "vue";
import LayCheckbox from "../checkbox/index.vue";
import LayDropdown from "../dropdown/index.vue";
import LayTooltip from "../tooltip/index.vue";
export interface LayTableRowProps {
indentSize: number;

View File

@ -6,13 +6,12 @@ export default {
<script setup lang="ts">
import "./index.less";
import { ref, watch, useSlots, withDefaults, onMounted, Ref } from "vue";
import { ref, watch, useSlots, withDefaults, onMounted } from "vue";
import { v4 as uuidv4 } from "../../utils/guidUtil";
import { Recordable } from "../../types";
import { LayIcon } from "@layui/icons-vue";
import LayCheckbox from "../checkbox/index.vue";
import LayDropdown from "../dropdown/index.vue";
import LayTooltip from "../tooltip/index.vue";
import { LayIcon } from "@layui/icons-vue";
import LayPage from "../page/index.vue";
import TableRow from "./TableRow.vue";