Files
DiceCloud/app/imports/ui/properties/forms/AttackForm.vue
2021-03-24 16:23:39 +02:00

17 lines
272 B
Vue

<template lang="html">
<action-form
attack-form
v-bind="$attrs"
v-on="$listeners"
/>
</template>
<script lang="js">
import ActionForm from '/imports/ui/properties/forms/ActionForm.vue';
export default {
components: {
ActionForm,
},
};
</script>