mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-24 10:22:18 +00:00
refactor
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
import {CoreNavigationCmpt} from '../../components/navigation/Navigation.js';
|
||||
import DashboardAdmin from '../../components/Dashboard/Admin.js';
|
||||
import Phrasen from "../../plugin/Phrasen.js"
|
||||
import FhcAlert from "../../plugin/FhcAlert.js"
|
||||
import Phrasen from "../../plugin/Phrasen.js";
|
||||
|
||||
const app = Vue.createApp({
|
||||
data: () => ({
|
||||
@@ -13,5 +12,5 @@ const app = Vue.createApp({
|
||||
}
|
||||
});
|
||||
app.config.unwrapInjectedRef = true;
|
||||
app.use(Phrasen).use(FhcAlert);
|
||||
app.use(Phrasen);
|
||||
app.mount('#main');
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
import FhcDashboard from '../../components/Dashboard/Dashboard.js';
|
||||
import Phrasen from "../../plugin/Phrasen.js"
|
||||
import FhcAlert from "../../plugin/FhcAlert.js"
|
||||
|
||||
const app = Vue.createApp({
|
||||
data: () => ({
|
||||
@@ -11,5 +10,5 @@ const app = Vue.createApp({
|
||||
}
|
||||
});
|
||||
app.config.unwrapInjectedRef = true;
|
||||
app.use(Phrasen).use(FhcAlert);
|
||||
app.use(Phrasen);
|
||||
app.mount('#content');
|
||||
|
||||
Reference in New Issue
Block a user