htui-yllkbz 1.1.15 → 1.1.16

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "htui-yllkbz",
3
- "version": "1.1.15",
3
+ "version": "1.1.16",
4
4
  "typings": "types/index.d.ts",
5
5
  "main": "lib/htui.common.js",
6
6
  "style": "lib/htui.css",
@@ -4,12 +4,12 @@
4
4
  * @Author: hutao
5
5
  * @Date: 2021-11-15 15:00:57
6
6
  * @LastEditors: hutao
7
- * @LastEditTime: 2021-11-15 15:48:37
7
+ * @LastEditTime: 2021-11-30 09:15:02
8
8
  */
9
- import SelectTable from "./index.vue";
9
+ import HtSelectTable from "./index.vue";
10
10
 
11
- (SelectTable as any).install = function (Vue: any) {
11
+ (HtSelectTable as any).install = function (Vue: any) {
12
12
 
13
- Vue.component(SelectTable.name, SelectTable);
13
+ Vue.component(HtSelectTable.name, HtSelectTable);
14
14
  };
15
- export default SelectTable;
15
+ export default HtSelectTable;
@@ -4,7 +4,7 @@
4
4
  * @Author: hutao
5
5
  * @Date: 2021-11-11 11:06:51
6
6
  * @LastEditors: hutao
7
- * @LastEditTime: 2021-11-29 18:25:09
7
+ * @LastEditTime: 2021-11-30 09:15:11
8
8
  -->
9
9
  <template>
10
10
  <el-popover placement="bottom"
@@ -80,7 +80,7 @@ interface Column {
80
80
  CommonTable,
81
81
  },
82
82
  })
83
- export default class SelectTable extends Vue {
83
+ export default class HtSelectTable extends Vue {
84
84
  /** 通用样式 */
85
85
  @Prop() comStyle!: string;
86
86
  @Prop() config!: string;
@@ -4,15 +4,15 @@
4
4
  * @Author: hutao
5
5
  * @Date: 2021-10-21 10:08:41
6
6
  * @LastEditors: hutao
7
- * @LastEditTime: 2021-11-15 15:06:00
7
+ * @LastEditTime: 2021-11-30 09:15:40
8
8
  */
9
9
 
10
10
  // 导入开关选择组件
11
- import selectTable from './SelectTable/index'
11
+ import HtSelectTable from './SelectTable/index'
12
12
 
13
13
  // 存储组件列表
14
14
  const components = [
15
- selectTable
15
+ HtSelectTable
16
16
  ]
17
17
  // 定义 install 方法,接收 Vue 作为参数。如果使用 use 注册插件,则所有的组件都将被注册
18
18
  const install = function (Vue: any) {
@@ -30,6 +30,6 @@ export default {
30
30
  // 导出的对象必须具有 install,才能被 Vue.use() 方法安装
31
31
  install,
32
32
  // 以下是具体的组件列表
33
- selectTable
33
+ HtSelectTable
34
34
  }
35
35