Commit 1d8f77675245178cb5552b971876f0085de619be
1 parent
4aec6a66
support BackTop to 2.0
Showing
6 changed files
with
24 additions
and
4 deletions
Show diff stats
README.md
examples/app.vue
... | ... | @@ -44,6 +44,7 @@ li + li { border-left: solid 1px #bbb; padding-left: 10px; margin-left: 10px; } |
44 | 44 | <li><router-link to="/spin">Spin</router-link></li> |
45 | 45 | <li><router-link to="/cascader">Cascader</router-link></li> |
46 | 46 | <li><router-link to="/select">Select</router-link></li> |
47 | + <li><router-link to="/backtop">Backtop</router-link></li> | |
47 | 48 | </ul> |
48 | 49 | </nav> |
49 | 50 | <router-view></router-view> | ... | ... |
examples/main.js
src/components/back-top/back-top.vue
src/index.js
... | ... | @@ -3,7 +3,7 @@ import 'core-js/fn/array/find-index'; |
3 | 3 | |
4 | 4 | import Affix from './components/affix'; |
5 | 5 | import Alert from './components/alert'; |
6 | -// import BackTop from './components/back-top'; | |
6 | +import BackTop from './components/back-top'; | |
7 | 7 | import Badge from './components/badge'; |
8 | 8 | import Breadcrumb from './components/breadcrumb'; |
9 | 9 | import Button from './components/button'; |
... | ... | @@ -49,7 +49,7 @@ import locale from './locale'; |
49 | 49 | const iview = { |
50 | 50 | Affix, |
51 | 51 | Alert, |
52 | - // BackTop, | |
52 | + BackTop, | |
53 | 53 | Badge, |
54 | 54 | Breadcrumb, |
55 | 55 | BreadcrumbItem: Breadcrumb.Item, | ... | ... |