yumechi-no-kuni/src/client/app/desktop/views/widgets/activity.vue

32 lines
501 B
Vue
Raw Normal View History

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