You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.6 KiB
51 lines
1.6 KiB
/*
|
|
* @Author: your name
|
|
* @Date: 2021-10-12 10:28:00
|
|
* @LastEditTime: 2021-11-09 09:57:50
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /data-show/src/components/index.js
|
|
*/
|
|
import vLabelDiv from "@/components/v-labelDiv";
|
|
import vLabelDivLight from "@/components/v-labelDivLight";
|
|
import vModal from "@/components/v-modal";
|
|
import vTable from "@/components/v-table";
|
|
import vTabGroup from "@/components/v-tab-group";
|
|
import vTabMode from "@/components/v-tab-mode";
|
|
import vEcharts from "@/components/v-echars";
|
|
import vBtn from "@/components/v-btn";
|
|
import vCardButton from "@/components/v-card-button";
|
|
import vDoubleButton from "@/components/v-double-button";
|
|
import vLabelCtx from "@/components/v-label-ctx"
|
|
import vLabelTable from "@/components/v-label-table"
|
|
import vPagination from "@/components/v-pagination"
|
|
import vRanking from "@/components/v-ranking";
|
|
import vEcharsMap from "@/components/v-echars-map"
|
|
import vPercent from "@/components/v-percent"
|
|
import vCutsceneWaiting from "@/components/v-cutscene-waiting"
|
|
export default {
|
|
install(Vue) {
|
|
Vue.mixin({
|
|
components: {
|
|
vLabelDiv,
|
|
vLabelDivLight,
|
|
vModal,
|
|
vTable,
|
|
vTabGroup,
|
|
vTabMode,
|
|
vEcharts,
|
|
vBtn,
|
|
vCardButton,
|
|
vDoubleButton,
|
|
vLabelCtx,
|
|
vLabelTable,
|
|
vPagination,
|
|
vRanking,
|
|
vEcharsMap,
|
|
vPercent,
|
|
vCutsceneWaiting
|
|
}
|
|
})
|
|
}
|
|
}
|