Files
DiceCloud/app/imports/client/ui/properties/viewers/RollViewer.vue
2023-09-28 21:27:05 +02:00

26 lines
508 B
Vue

<template lang="html">
<div class="roll-viewer">
<v-row dense>
<property-field
name="Variable Name"
mono
:value="model.variableName"
/>
<property-field
name="Roll"
large
center
:calculation="model.roll"
/>
</v-row>
</div>
</template>
<script lang="js">
import propertyViewerMixin from '/imports/client/ui/properties/viewers/shared/propertyViewerMixin'
export default {
mixins: [propertyViewerMixin],
}
</script>