add alpha branch

This commit is contained in:
就眠儀式
2022-01-27 16:18:16 +08:00
parent 5c79b2b9ba
commit 5ea8b7bf7c
103 changed files with 577 additions and 474 deletions

View File

@@ -0,0 +1,6 @@
.laytable-cell-checkbox {
width: 34px;
}
.layui-table-col-special {
width: 34px;
}

View File

@@ -1,9 +1,8 @@
import type { App } from "vue";
import Component from "./index.vue";
import type { IDefineComponent } from "../type/index";
Component.install = (app: App) => {
app.component(Component.name || "LayTable", Component);
app.component(Component.name, Component);
};
export default Component as IDefineComponent;
export default Component;

View File

@@ -13,8 +13,9 @@ import {
withDefaults,
defineEmits,
} from "vue";
import { Recordable } from "../type";
import { Recordable } from "../../types";
import { guid } from "../../utils/guidUtil";
import "./index.less";
const tableId = guid();
@@ -241,13 +242,4 @@ const print = function () {
</div>
</div>
</div>
</template>
<style scoped>
.laytable-cell-checkbox {
width: 34px;
}
.layui-table-col-special {
width: 34px;
}
</style>
</template>