import footBar from "../components/FootBar"; import headBar from "../components/HeadBar"; import LTInfo from "../components/LTInfo"; import LTProgress from "../components/LTProgress"; import ElNav from "../components/ElNav"; import WordType from "../components/WordType"; import WordInfo from "../components/WordInfo"; import SearchList from "../components/SearchList"; import WordList from "../components/WordList"; import WordEditor from "../components/WordEditor"; export default { install(Vue){ Vue.component("foot-bar",footBar) Vue.component("head-bar",headBar) Vue.component("LTProgress",LTProgress) Vue.component("LTInfo",LTInfo) Vue.component("ElNav",ElNav) Vue.component("WordType",WordType) Vue.component("WordInfo",WordInfo) Vue.component("SearchList",SearchList) Vue.component("WordList",WordList) Vue.component("WordEditor",WordEditor) } }