This commit is contained in:
syuilo
2018-10-21 16:18:02 +09:00
parent 6b0d48423d
commit 7bbf022978
12 changed files with 38 additions and 76 deletions

View File

@@ -1,5 +1,5 @@
<template>
<x-notes ref="timeline" :more="existMore ? more : null" :media-view="mediaView" @parentFocus="parentFocus"/>
<x-notes ref="timeline" :more="existMore ? more : null" :media-view="mediaView"/>
</template>
<script lang="ts">
@@ -143,11 +143,7 @@ export default Vue.extend({
focus() {
(this.$refs.timeline as any).focus();
},
parentFocus(direction) {
this.$emit('parentFocus', direction);
},
}
}
});
</script>