side_menu/src/menu.js
Simon Vieille ecbe2f7d72
add shortscuts
add open/close action
2025-04-16 09:05:46 +02:00

47 lines
1.4 KiB
JavaScript

/**
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import './scss/menu.scss'
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import { createElement } from './lib/dom.js'
import MenuContainer from './menus/MenuContainer.vue'
// import PageLoader from './components/PageLoader.vue'
// window.PageLoader = PageLoader
const pinia = createPinia()
const body = document.querySelector('body')
const container = createElement('div', {
id: 'side-menu-container',
})
body.appendChild(container)
const app = createApp(MenuContainer)
app.use(pinia)
app.mixin({ methods: { t, n } })
app.mount(container)
// waitContainer('#header .app-menu').then((selector) => {
// const app = createApp(AppMenu)
// app.use(pinia)
// app.mixin({ methods: { t, n }})
// app.mount(selector)
// })