@gindow/element-go 1.0.7 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
<!-- 批量操作 -->
|
|
20
20
|
<el-space class="mt-5">
|
|
21
21
|
<el-checkbox v-if="sortable" v-model="sorting" :label="t('core.sort')" border />
|
|
22
|
-
<slot
|
|
22
|
+
<slot name="batch" />
|
|
23
23
|
</el-space>
|
|
24
24
|
<!-- 分页操作 -->
|
|
25
25
|
<ex-pagination v-if="pager && total" v-model:size="size" v-model:page="page" :total />
|
package/src/index.ts
CHANGED
|
@@ -20,7 +20,7 @@ import ExTable from './components/ExTable.vue'
|
|
|
20
20
|
import ExTableColumn from './components/ExTableColumn.vue'
|
|
21
21
|
import ExUpload from './components/ExUpload.vue'
|
|
22
22
|
import ExUploadAsset from './components/ExUploadAsset.vue'
|
|
23
|
-
|
|
23
|
+
import './styles/index.css'
|
|
24
24
|
|
|
25
25
|
export * from './types'
|
|
26
26
|
export { useMessage } from './hooks/useMessage'
|