Skip to content
Snippets Groups Projects

Add About page and Privacy Policy (placeholder)

Files

import About from '@/components/About/About';
// @vue/component
export default {
name: 'About',
components: {
About,
},
/**
* Generate the data for this component.
*
* @returns {Object} Data for the Dashboard component.
*/
data() {
return {};
},
computed: {
},
methods: {
},
};
Loading