mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-17 17:56:30 +01:00
39 lines
545 B
Vue
39 lines
545 B
Vue
<template>
|
|
<mk-ui>
|
|
<main>
|
|
<x-page :page-name="page" :username="user"/>
|
|
</main>
|
|
</mk-ui>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
|
components: {
|
|
XPage: () => import('../../../common/views/pages/page/page.vue').then(m => m.default)
|
|
},
|
|
|
|
props: {
|
|
page: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
user: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
main
|
|
margin 0 auto
|
|
padding 16px
|
|
max-width 1000px
|
|
|
|
@media (min-width 600px)
|
|
padding 32px
|
|
|
|
</style>
|