mirror of
https://github.com/janishutz/libreevent.git
synced 2025-11-25 13:24:24 +00:00
31 lines
563 B
Vue
31 lines
563 B
Vue
<!--
|
|
* libreevent - PagesView.vue
|
|
*
|
|
* Created by Janis Hutz 05/14/2023, Licensed under the GPL V3 License
|
|
* https://janishutz.com, development@janishutz.com
|
|
*
|
|
*
|
|
-->
|
|
|
|
<template>
|
|
<div>
|
|
<h2>Pages</h2>
|
|
<p>Here you can modify your landing page (the start page of libreǝvent) and other pages</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data () {
|
|
return {
|
|
formData: {}
|
|
}
|
|
},
|
|
methods: {
|
|
setup () {
|
|
|
|
}
|
|
}
|
|
};
|
|
</script>
|