1234567891011121314151617181920212223242526 |
- <template lang="pug">
- .products-searcher
- input(type="text" placeholder="Buscar un producto")
- </template>
- <script>
- export default {
- }
- </script>
- <style lang="sass">
- .products-searcher
- width: 100%
- height: 35px
- input
- width: inherit
- height: inherit
- text-align: center
- border-radius: 0
- font:
- size: 11pt
- style: normal
- weight: bold
- </style>
|