Browse Source

[FIX] unused components removed

Gogs 7 years ago
parent
commit
446b874fc3
3 changed files with 14 additions and 29 deletions
  1. 3 3
      src/App.vue
  2. 0 26
      src/components/CartOptions.vue
  3. 11 0
      src/components/CustomersGrid.vue

+ 3 - 3
src/App.vue

@@ -9,7 +9,7 @@
                     cart-total
                     cart-items
         tab-content(title="Seleccione un cliente")
-            .customers
+            customers-grid
         tab-content(title="Vea un resumen de su operación")
             .results
 </template>
@@ -21,7 +21,7 @@
     import CartTotal from '@/components/CartTotal'
     import CartItems from '@/components/CartItems'
     import CartItem from '@/components/CartItem'
-    import CartOptions from '@/components/CartOptions'
+    import CustomersGrid from '@/components/ProductsGrid'
     import 'vue-form-wizard/dist/vue-form-wizard.min.css'
 
     export default {
@@ -33,7 +33,7 @@
             'cart-total': CartTotal,
             'cart-items': CartItems,
             'cart-item': CartItem,
-            'cart-options': CartOptions
+            'customers-grid': CustomersGrid
         }
     }
 </script>

+ 0 - 26
src/components/CartOptions.vue

@@ -1,26 +0,0 @@
-<template lang="pug">
-    .cart-options
-        button.cart-next Continuar
-</template>
-
-<style lang="sass">
-    .cart-options
-        width: 100%
-        height: 50px
-
-        .cart-next
-            width: 100%
-            height: inherit
-            border: none
-            border-radius: 0
-            box-shadow: none
-            background: #4caf50
-            color: #fff
-            font:
-                size: 12pt
-                weight: bold
-            &:hover
-                background: #388e3c
-
-</style>
-

+ 11 - 0
src/components/CustomersGrid.vue

@@ -0,0 +1,11 @@
+<template lang="pug">
+    .customers Customers Component
+</template>
+
+<script>
+    export default {
+    }
+</script>
+
+<style lang="sass">
+</style>