Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

292
Views
¿Cómo puedo eliminar este icono del campo de texto? (Vuetifyjs, CSS)

Tengo este campo de texto vuetifyjs y quiero eliminar el icono del reloj.
<v-text-field
v-model="model.end_time"
type="time">
</v-text-field>

ingrese la descripción de la imagen aquí

Ya probé este código pero no funciona

 input[type="time"]::-webkit-calendar-picker-indicator { background: none; display:none; }

Puede alguien ayudarme con esto

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Necesita agregar el código css globalmente. Si agrega css en <style scoped> , no funcionará.

 import { createApp } from 'vue' Vue.use(Vuetify); new Vue({ el: "#app", components: { App }, template: "<App/>" }); createApp({ data() { return { count: 0 } } }).mount('#app')
 <script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script> <script src="https://cdn.jsdelivr.net/npm/vuetify@2.x/dist/vuetify.js"></script> <link href="https://cdn.jsdelivr.net/npm/vuetify@2.x/dist/vuetify.min.css" rel="stylesheet"> <style> input[type="time"]::-webkit-calendar-picker-indicator { background: none; display: none; } </style> <div id="app"> <br> <br> <v-text-field value="12:30:00" type="time" ></v-text-field> </div> <script> new Vue({ el: "#app", data: { count: 1 } }); </script>

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!