Sharkey/src/client/app/desktop/views/widgets/activity.vue

32 lines
501 B
Vue
Raw Normal View History

2018-02-19 23:13:27 +02:00
<template>
<mk-activity
:design="props.design"
:init-view="props.view"
:user="os.i"
@view-changed="viewChanged"/>
</template>
<script lang="ts">
2018-02-24 17:18:09 +02:00
import define from '../../../common/define-widget';
2018-02-19 23:13:27 +02:00
export default define({
name: 'activity',
2018-02-21 08:30:03 +02:00
props: () => ({
2018-02-19 23:13:27 +02:00
design: 0,
view: 0
2018-02-21 08:30:03 +02:00
})
2018-02-19 23:13:27 +02:00
}).extend({
methods: {
func() {
if (this.props.design == 2) {
this.props.design = 0;
} else {
this.props.design++;
}
},
viewChanged(view) {
this.props.view = view;
}
}
});
</script>