|
@@ -2,7 +2,7 @@
|
|
.pos
|
|
.pos
|
|
form-wizard(title='' subtitle='' finishButtonText='Finalizar' color='#7c7bad' nextButtonText='Continuar' backButtonText='Volver' @on-complete='createSale')
|
|
form-wizard(title='' subtitle='' finishButtonText='Finalizar' color='#7c7bad' nextButtonText='Continuar' backButtonText='Volver' @on-complete='createSale')
|
|
tab-content(title="Qué productos necesita?")
|
|
tab-content(title="Qué productos necesita?")
|
|
- .step 1
|
|
|
|
|
|
+ product-step
|
|
tab-content(title="Quién es el cliente?")
|
|
tab-content(title="Quién es el cliente?")
|
|
.step 2
|
|
.step 2
|
|
tab-content(title="Cómo quieres pagar?")
|
|
tab-content(title="Cómo quieres pagar?")
|
|
@@ -15,10 +15,13 @@
|
|
import { FormWizard, TabContent } from 'vue-form-wizard'
|
|
import { FormWizard, TabContent } from 'vue-form-wizard'
|
|
import 'vue-form-wizard/dist/vue-form-wizard.min.css'
|
|
import 'vue-form-wizard/dist/vue-form-wizard.min.css'
|
|
|
|
|
|
|
|
+ import ProductStep from '@/components/steps/product/Main'
|
|
|
|
+
|
|
export default {
|
|
export default {
|
|
components: {
|
|
components: {
|
|
FormWizard,
|
|
FormWizard,
|
|
- TabContent
|
|
|
|
|
|
+ TabContent,
|
|
|
|
+ ProductStep
|
|
},
|
|
},
|
|
methods: mapActions([
|
|
methods: mapActions([
|
|
'initSale',
|
|
'initSale',
|