mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-20 16:32:20 +00:00
16 lines
333 B
JavaScript
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'); |