Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(VCombobox): v-combobox placeholder is not consistent with v-textbox #20737

Closed

Conversation

giuliohome
Copy link

fixes #20660

Description

See my comment here.

Markup:

<template>
  <v-app>
    <v-container>
      <v-text-field v-model="msg" placeholder="Enter the message" />

      <v-combobox v-model="msg" placeholder="Enter the message" />
    </v-container>
  </v-app>
</template>

<script setup>
  import { ref } from 'vue'

  const msg = ref('')
</script>

<script>
  export default {
    name: 'Playground',
    setup () {
      return {
        //
      }
    },
  }
</script>

@giuliohome-org giuliohome-org closed this by deleting the head repository Nov 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Closed and to be deleted
2 participants