Inventory items can now be equipped

This commit is contained in:
Thaum Rystra
2020-05-18 23:03:34 +02:00
parent fe11c9ec23
commit 4352ca5f0d
8 changed files with 127 additions and 48 deletions

View File

@@ -0,0 +1,20 @@
<template lang="html">
<div class="layout row align-center justify-start">
<property-icon
class="mr-2"
:type="model.type"
:class="selected && 'primary--text'"
/>
<div class="text-no-wrap text-truncate">
{{ title }}
</div>
</div>
</template>
<script>
import treeNodeViewMixin from '/imports/ui/properties/treeNodeViews/treeNodeViewMixin.js';
export default {
mixins: [treeNodeViewMixin],
}
</script>