Skip to content

Commit

Permalink
fix(ui): vue file in ts instead of js
Browse files Browse the repository at this point in the history
  • Loading branch information
davinov committed Nov 9, 2022
1 parent 9779fdc commit 3a5804d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ui/src/components/stepforms/StepFormButtonbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@
</div>
</div>
</template>
<script>
export default {};
<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({
functional: true,
});
</script>
<style lang="scss" scoped>
@import '../../styles/_variables';
Expand Down

0 comments on commit 3a5804d

Please sign in to comment.