mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-17 13:46:34 +01:00
9f5dc2c0df
* wip * Rename * Clean up * Clean up * wip * wip * Enable tree shaking * ✌️ * ✌️ * wip * wip * Clean up
33 lines
618 B
Vue
33 lines
618 B
Vue
<template>
|
|
<div class="mkw-activity">
|
|
<mk-widget-container :show-header="!props.compact">
|
|
<template slot="header"><fa icon="chart-bar"/>%i18n:@activity%</template>
|
|
<div :class="$style.body">
|
|
<mk-activity :user="$store.state.i"/>
|
|
</div>
|
|
</mk-widget-container>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import define from '../../../common/define-widget';
|
|
|
|
export default define({
|
|
name: 'activity',
|
|
props: () => ({
|
|
compact: false
|
|
})
|
|
}).extend({
|
|
methods: {
|
|
func() {
|
|
this.props.compact = !this.props.compact;
|
|
this.save();
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="stylus" module>
|
|
.body
|
|
padding 8px
|
|
</style>
|