-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from shuaijinchao/bugfix/routing/drawer
bugfix: routing drawer questions.
- Loading branch information
Showing
9 changed files
with
84 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
import Vue from "vue"; | ||
import App from "./App.vue"; | ||
import ApioakCookie from 'vue-cookies'; | ||
import ApioakElement from 'element-ui'; | ||
import ApioakBackend from '@/apioak/backend'; | ||
import ApioakRequest from '@/apioak/request'; | ||
import ApioakConst from "@/apioak/const"; | ||
import ApioakRouter from '@/apioak/router'; | ||
import ApioakStore from '@/store' | ||
import APIOAKCookie from 'vue-cookies'; | ||
import APIOAKElement from 'element-ui'; | ||
import APIOAKBackend from '@/apioak/backend'; | ||
import APIOAKRequest from '@/apioak/request'; | ||
import APIOAKConst from "@/apioak/const"; | ||
import APIOAKRouter from '@/router'; | ||
import APIOAKStore from '@/store/index'; | ||
|
||
Vue.use(ApioakRouter); | ||
Vue.use(ApioakCookie); | ||
Vue.use(ApioakElement); | ||
Vue.use(ApioakBackend); | ||
Vue.use(ApioakRequest); | ||
Vue.use(ApioakConst); | ||
Vue.use(APIOAKRouter); | ||
Vue.use(APIOAKCookie); | ||
Vue.use(APIOAKElement); | ||
Vue.use(APIOAKBackend); | ||
Vue.use(APIOAKRequest); | ||
Vue.use(APIOAKConst); | ||
|
||
Vue.config.productionTip = false; | ||
|
||
new Vue({ | ||
router: ApioakRouter, | ||
store: ApioakStore, | ||
router: APIOAKRouter, | ||
store: APIOAKStore, | ||
render: h => h(App), | ||
}).$mount("#app"); |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters