OSD-Frontend/src/plugins/index.js

16 lines
357 B
JavaScript

import Warning from "./Warning";
import Manual from "./Manual";
import Temperature from "./Temperature";
import Accident from "./Accident";
import PetMode from "./PetMode";
import SmartHome from "./SmartHome";
export default {
warning: Warning,
manual: Manual,
temperature: Temperature,
accident: Accident,
petMode: PetMode,
smartHome: SmartHome,
};