2020-01-05 19:58:23 +00:00
|
|
|
import { Header, HeaderLeft, HeaderMiddle, HeaderRight, NavigationBar, NavigationItem } from '../../src/components';
|
2020-01-05 19:46:59 +00:00
|
|
|
import '../../src/assets/css/tailwind.css';
|
|
|
|
|
|
|
|
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.component('Header', Header);
|
|
|
|
Vue.component('HeaderLeft', HeaderLeft);
|
|
|
|
Vue.component('HeaderMiddle', HeaderMiddle);
|
|
|
|
Vue.component('HeaderRight', HeaderRight);
|
2020-01-05 19:58:23 +00:00
|
|
|
Vue.component('NavigationBar', NavigationBar);
|
|
|
|
Vue.component('NavigationItem', NavigationItem);
|
2020-01-05 19:46:59 +00:00
|
|
|
}
|
|
|
|
|