ProductsSearcher.vue 494 B

1234567891011121314151617181920212223242526
  1. <template lang="pug">
  2. .products-searcher
  3. input(type="text" placeholder="Buscar un producto")
  4. </template>
  5. <script>
  6. export default {
  7. }
  8. </script>
  9. <style lang="sass">
  10. .products-searcher
  11. width: 100%
  12. height: 35px
  13. input
  14. width: inherit
  15. height: inherit
  16. text-align: center
  17. border-radius: 0
  18. font:
  19. size: 11pt
  20. style: normal
  21. weight: bold
  22. </style>