wip
This commit is contained in:
parent
e8f48bcec4
commit
fa142e3e72
|
@ -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>
|
|
|
@ -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>
|
Loading…
Reference in New Issue