Files
FHC-Core/public/js/apps/Cis/RoomInformation.js
T

16 lines
333 B
JavaScript

import Phrasen from "../../plugin/Phrasen.js";
import RoomInformation from "../../components/Cis/Mylv/RoomInformation.js";
const app = Vue.createApp({
name: 'RoomInformationApp',
components: {
RoomInformation
},
data() {
return {
}
}
});
app.config.unwrapInjectedRef = true;
app.use(Phrasen);
app.mount('#content');