Skip to content
  • This project
    • Loading...
  • Sign in

web-framework-temp / vue-cli3-vt-template-master

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • vue-cli3-vt-template-master
  • src
  • utils
  • vant-util.js
  • simon's avatar
    默认提交 · a8d19002
    a8d19002
    simon committed 2022-12-23 14:45:55 +0800
vant-util.js 389 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
import Vue from 'vue'

import {
	Swipe,
	SwipeItem,
	Lazyload,
	Tab,
	Tabs,
	Sticky,
	Popup,
	Tabbar,
	TabbarItem,
	Icon,
	Uploader,
    Area,
    List,
	Toast,
	Button
} from 'vant';

Vue.use(Swipe).use(SwipeItem)
	.use(Lazyload)
	.use(Tab).use(Tabs)
	.use(Sticky)
	.use(Popup)
	.use(Tabbar).use(TabbarItem)
	.use(Icon)
	.use(Uploader)
	.use(Area)
	.use(List)
	.use(Button)
	.use(Toast);