🐛(table): 修复 table 按需加载时无法正常加载 checkbox 组件
更新文档
This commit is contained in:
parent
76e512823a
commit
e24a5fa681
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@layui/layui-vue",
|
"name": "@layui/layui-vue",
|
||||||
"version": "1.1.6",
|
"version": "1.1.7-alpha.1",
|
||||||
"author": "就眠儀式",
|
"author": "就眠儀式",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"description": "a component library for Vue 3 base on layui-vue",
|
"description": "a component library for Vue 3 base on layui-vue",
|
||||||
|
@ -5,8 +5,11 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { computed, ref, useSlots, WritableComputedRef } from "vue";
|
|
||||||
import { Recordable } from "../../types";
|
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 {
|
export interface LayTableRowProps {
|
||||||
indentSize: number;
|
indentSize: number;
|
||||||
|
@ -6,13 +6,12 @@ export default {
|
|||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import "./index.less";
|
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 { v4 as uuidv4 } from "../../utils/guidUtil";
|
||||||
import { Recordable } from "../../types";
|
import { Recordable } from "../../types";
|
||||||
|
import { LayIcon } from "@layui/icons-vue";
|
||||||
import LayCheckbox from "../checkbox/index.vue";
|
import LayCheckbox from "../checkbox/index.vue";
|
||||||
import LayDropdown from "../dropdown/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 LayPage from "../page/index.vue";
|
||||||
import TableRow from "./TableRow.vue";
|
import TableRow from "./TableRow.vue";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user