fimoi-tab-bar 1.1.2 → 1.1.3

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.
@@ -0,0 +1,9 @@
1
+ <template>
2
+ <div>
3
+ <button>
4
+ 按钮1
5
+ </button>
6
+ </div>
7
+
8
+
9
+ </template>
package/index.js CHANGED
@@ -1,7 +1,8 @@
1
1
  import FimoiTabBar from "./fimoiTabBar/index.vue";
2
+ import FimoiButton from "./fimoiButton/index.vue";
2
3
 
3
4
  // 批量组件注册
4
- const components = [FimoiTabBar];
5
+ const components = [FimoiTabBar, FimoiButton];
5
6
 
6
7
  const install = function (Vue) {
7
8
  components.forEach((component) => {
@@ -15,7 +16,8 @@ if (typeof window !== 'undefined' && window.Vue) {
15
16
  }
16
17
 
17
18
  export {
18
- FimoiTabBar
19
+ FimoiTabBar,
20
+ FimoiButton
19
21
  };
20
22
 
21
23
  export default {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fimoi-tab-bar",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "一个基于 UniApp 的可配置底部标签栏组件,支持微信小程序。",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -14,6 +14,7 @@
14
14
  "license": "MIT",
15
15
  "files": [
16
16
  "index.js",
17
- "fimoiTabBar/index.vue"
17
+ "fimoiTabBar/index.vue",
18
+ "fimoiButton/index.vue"
18
19
  ]
19
20
  }