mirror of
https://github.com/mokuappio/serverless-invoices.git
synced 2025-10-28 16:31:07 -04:00
19 lines
257 B
Vue
19 lines
257 B
Vue
<template>
|
|
<div>
|
|
<InvoiceForm/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import InvoiceForm from '../components/invoices/InvoiceForm';
|
|
|
|
export default {
|
|
name: 'client',
|
|
components: {
|
|
InvoiceForm,
|
|
},
|
|
computed: {},
|
|
methods: {},
|
|
};
|
|
</script>
|