work on episode form

This commit is contained in:
bkfox
2024-03-16 22:37:56 +01:00
parent eaf453086d
commit de858f45e8
17 changed files with 209 additions and 146 deletions

View File

@@ -4,10 +4,18 @@ import './index.js'
import App from './app';
import {dashboard as components} from './components'
const AdminApp = {
const DashboardApp = {
...App,
components: {...App.components, ...components},
/*
data() {
return {
editPageContent: null,
}
},
*/
methods: {
...App.methods,
@@ -22,7 +30,7 @@ const AdminApp = {
},
}
}
export default AdminApp;
export default DashboardApp;
window.App = AdminApp
window.App = DashboardApp