This commit is contained in:
syuilo 2018-02-25 00:18:09 +09:00
parent 89a98b2644
commit 36c11e1f0f
48 changed files with 105 additions and 191 deletions

View file

@ -1,31 +0,0 @@
<template>
<mk-activity
:design="props.design"
:init-view="props.view"
:user="os.i"
@view-changed="viewChanged"/>
</template>
<script lang="ts">
import define from '../../../../common/define-widget';
export default define({
name: 'activity',
props: () => ({
design: 0,
view: 0
})
}).extend({
methods: {
func() {
if (this.props.design == 2) {
this.props.design = 0;
} else {
this.props.design++;
}
},
viewChanged(view) {
this.props.view = view;
}
}
});
</script>