Added autocomplete for fields that expect variable names

This commit is contained in:
Thaum Rystra
2020-04-29 10:53:06 +02:00
parent 966fcc449d
commit ed9cfee9f9
13 changed files with 128 additions and 35 deletions

View File

@@ -1,9 +1,14 @@
<template lang="html">
<computed :value="value" :scope="scope" v-bind="$attrs"/>
<computed
:value="value"
:scope="scope"
v-bind="$attrs"
/>
</template>
<script>
import Computed from '/imports/ui/components/computation/Computed.vue';
import Creatures from '/imports/api/creature/Creatures.js';
export default {
inject: ['computationContext'],
@@ -13,6 +18,7 @@ export default {
props: {
value: {
type: String,
default: undefined,
},
},
meteor: {