1234567891011121314151617181920212223 |
- <template lang="pug">
- .move-container
- h3 Aqui va las lineas de la Factura
- </template>
- <script>
- // import InvoiceSearcher from '@/components/invoice/InvoiceSearcher'
- export default {
- components: {
- }
- }
- </script>
- <style lang="sass">
- .move-container
- width: 300px
- height: 100px
- border-left: 1px solid #d3d3d3
- padding-left: 10px
- display: inline-block
- vertical-align: top
- </style>
|