17 lines
272 B
Vue
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>
|