@vuesax-alpha/nightly
Version:
A Component Library for Vue 3
21 lines (18 loc) • 625 B
JavaScript
import '../../utils/index.mjs';
import Table from './src/table2.mjs';
import Td from './src/td2.mjs';
import Th from './src/th2.mjs';
import Tr from './src/tr2.mjs';
export { tableEmits, tableProps } from './src/table.mjs';
export { getPage, sortData, toggleSelectAll } from './src/utils.mjs';
import { withInstall, withNoopInstall } from '../../utils/vue/install.mjs';
const VsTable = withInstall(Table, {
Td,
Th,
Tr
});
const VsTd = withNoopInstall(Td);
const VsTh = withNoopInstall(Th);
const VsTr = withNoopInstall(Tr);
export { VsTable, VsTd, VsTh, VsTr, VsTable as default };
//# sourceMappingURL=index.mjs.map