24 lines
645 B
Vue
24 lines
645 B
Vue
<template lang="html">
|
|
<div class="buff-viewer">
|
|
<property-name :value="model.name" />
|
|
<property-variable-name :value="model.variableName" />
|
|
<property-field
|
|
name="Calculation"
|
|
:value="model.calculation"
|
|
/>
|
|
<calculation-error-list :errors="model.errors" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="js">
|
|
import propertyViewerMixin from '/imports/ui/properties/viewers/shared/propertyViewerMixin.js'
|
|
import CalculationErrorList from '/imports/ui/properties/forms/shared/CalculationErrorList.vue';
|
|
|
|
export default {
|
|
components: {
|
|
CalculationErrorList,
|
|
},
|
|
mixins: [propertyViewerMixin],
|
|
}
|
|
</script>
|