Files
libreevent/src/webapp/src/views/admin/PagesView.vue
2023-06-03 14:57:17 +02:00

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>