look-ui 1.3.22 → 1.3.24

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": "look-ui",
3
- "version": "1.3.22",
3
+ "version": "1.3.24",
4
4
  "description": "a ui library which is based on element-ui",
5
5
  "main": "./dist/look-ui.common.js",
6
6
  "scripts": {
@@ -19,6 +19,7 @@
19
19
  "qs": "^6.11.2",
20
20
  "sass": "^1.63.6",
21
21
  "sass-loader": "^13.3.2",
22
+ "swiper": "^11.1.12",
22
23
  "vue": "^2.6.14",
23
24
  "vue-json-excel": "^0.3.0",
24
25
  "vue-router": "^3.6.5",
package/src/App.vue CHANGED
@@ -21,6 +21,10 @@
21
21
  <i class="el-icon-setting"></i>
22
22
  <span slot="title">绩效考核-责任端</span>
23
23
  </el-menu-item>
24
+ <el-menu-item index="/look-scrollable">
25
+ <i class="el-icon-setting"></i>
26
+ <span slot="title">滚动表格</span>
27
+ </el-menu-item>
24
28
  </el-menu>
25
29
  </div>
26
30
 
package/src/router.js CHANGED
@@ -21,6 +21,10 @@ const routes = [
21
21
  path: '/look-performance-unit',
22
22
  component: () => import('/packages/look-performance-unit/src/demo.vue'),
23
23
  },
24
+ {
25
+ path: '/look-scrollable',
26
+ component: () => import('/packages/look-scrollable/src/demo.vue'),
27
+ },
24
28
  ];
25
29
 
26
30
  const router = new VueRouter({