mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
19 lines
331 B
Vue
19 lines
331 B
Vue
<template>
|
|
<internal-page :pageParams="links.SUPPORT" />
|
|
</template>
|
|
|
|
<script>
|
|
import links from '~/constants/links.js'
|
|
import InternalPage from '~/components/_new/features/InternalPage/InternalPage.vue'
|
|
|
|
export default {
|
|
layout: 'basic',
|
|
components: {
|
|
InternalPage,
|
|
},
|
|
data() {
|
|
return { links }
|
|
},
|
|
}
|
|
</script>
|