This commit is contained in:
こぴなたみぽ 2018-02-16 20:55:57 +09:00
parent e8f48bcec4
commit fa142e3e72
2 changed files with 17 additions and 10 deletions

View File

@ -1,10 +0,0 @@
<mk-file-type-icon>
<template v-if="kind == 'image'">%fa:file-image%</template>
<style lang="stylus" scoped>
:scope
display inline
</style>
<script lang="typescript">
this.kind = this.opts.type.split('/')[0];
</script>
</mk-file-type-icon>

View File

@ -0,0 +1,17 @@
<template>
<span>
<template v-if="kind == 'image'">%fa:file-image%</template>
</span>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
props: ['type'],
computed: {
kind(): string {
return this.type.split('/')[0];
}
}
});
</script>