|
@@ -9,21 +9,23 @@ import store from "./store";
|
|
|
import md5 from "md5";
|
|
import md5 from "md5";
|
|
|
import "./styles/index.scss";
|
|
import "./styles/index.scss";
|
|
|
import NumberVue from "comps/Number.vue";
|
|
import NumberVue from "comps/Number.vue";
|
|
|
-import SafetyCard from "comps/SafetyCard.vue";
|
|
|
|
|
|
|
+import SafetyModule from "comps/SafetyModule.vue";
|
|
|
import TitleLine from "comps/TitleLine.vue";
|
|
import TitleLine from "comps/TitleLine.vue";
|
|
|
import CargoOwnderCard from "comps/CargoOwnderCard.vue";
|
|
import CargoOwnderCard from "comps/CargoOwnderCard.vue";
|
|
|
import IconInfo from "comps/IconInfo.vue";
|
|
import IconInfo from "comps/IconInfo.vue";
|
|
|
import ShipOwnerInfo from "comps/ShipOwnerInfo.vue";
|
|
import ShipOwnerInfo from "comps/ShipOwnerInfo.vue";
|
|
|
import ShipInfoCard from "comps/ShipInfoCard.vue";
|
|
import ShipInfoCard from "comps/ShipInfoCard.vue";
|
|
|
import CapacityCard from "comps/CapacityCard.vue";
|
|
import CapacityCard from "comps/CapacityCard.vue";
|
|
|
|
|
+import IntelligentModule from "comps/IntelligentModule.vue";
|
|
|
|
|
|
|
|
|
|
+app.component("IntelligentModule", IntelligentModule);
|
|
|
app.component("CapacityCard", CapacityCard);
|
|
app.component("CapacityCard", CapacityCard);
|
|
|
app.component("ShipInfoCard", ShipInfoCard);
|
|
app.component("ShipInfoCard", ShipInfoCard);
|
|
|
app.component("ShipOwnerInfo", ShipOwnerInfo);
|
|
app.component("ShipOwnerInfo", ShipOwnerInfo);
|
|
|
app.component("IconInfo", IconInfo);
|
|
app.component("IconInfo", IconInfo);
|
|
|
app.component("CargoOwnderCard", CargoOwnderCard);
|
|
app.component("CargoOwnderCard", CargoOwnderCard);
|
|
|
app.component("TitleLine", TitleLine);
|
|
app.component("TitleLine", TitleLine);
|
|
|
-app.component("SafetyCard", SafetyCard);
|
|
|
|
|
|
|
+app.component("SafetyModule", SafetyModule);
|
|
|
app.component("NumberVue", NumberVue);
|
|
app.component("NumberVue", NumberVue);
|
|
|
|
|
|
|
|
router.beforeEach(async (to, from, next) => {
|
|
router.beforeEach(async (to, from, next) => {
|