This repository was archived by the owner on Nov 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathenhanceApp.js
70 lines (68 loc) · 2.22 KB
/
enhanceApp.js
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import './styles.scss'
import AutoInit from '../../components/auto-init'
import Button from '../../components/button'
import Icon from '../../components/icon'
import Radio from '../../components/radio'
import FormField from '../../components/form-field'
import Checkbox from '../../components/checkbox'
import Select from '../../components/select'
import Card from '../../components/card'
import Chips from '../../components/chips'
import TextField from '../../components/text-field'
import FloatingLabel from '../../components/floating-label'
import LineRipple from '../../components/line-ripple'
import NotchedOutline from '../../components/notched-outline'
import List from '../../components/list'
import Menu from '../../components/menu'
import LayoutGrid from '../../components/layout-grid'
import Typography from '../../components/typography'
import Fab from '../../components/fab'
import IconButton from '../../components/icon-button'
import Dialog from '../../components/dialog'
import Drawer from '../../components/drawer'
import TopAppBar from '../../components/top-app-bar'
import ImageList from '../../components/image-list'
import Slider from '../../components/slider'
import Switch from '../../components/switch'
import LinearProgress from '../../components/linear-progress'
import Snackbar from '../../components/snackbar'
import Tabs from '../../components/tabs'
import Ripple from '../../components/ripple'
import Elevation from '../../components/elevation'
export default ({
Vue, // the version of Vue being used in the VuePress app
options, // the options for the root Vue instance
router, // the router instance for the app
siteData // site metadata
}) => {
Vue.use(AutoInit)
Vue.use(Button)
Vue.use(Icon)
Vue.use(Radio)
Vue.use(Checkbox)
Vue.use(FormField)
Vue.use(Select)
Vue.use(Card)
Vue.use(Chips)
Vue.use(TextField)
Vue.use(FloatingLabel)
Vue.use(LineRipple)
Vue.use(NotchedOutline)
Vue.use(LayoutGrid)
Vue.use(Typography)
Vue.use(Fab)
Vue.use(IconButton)
Vue.use(List)
Vue.use(Menu)
Vue.use(Dialog)
Vue.use(Drawer)
Vue.use(TopAppBar)
Vue.use(ImageList)
Vue.use(Slider)
Vue.use(Switch)
Vue.use(LinearProgress)
Vue.use(Snackbar)
Vue.use(Tabs)
Vue.use(Ripple)
Vue.use(Elevation)
}