Skip to content

Conversation

@Haviles04
Copy link
Contributor

@Haviles04 Haviles04 commented Nov 26, 2025

Description

fixes #22349

Markup:

<template>
  <v-app>
    <v-container>
      <h1>v-form[readonly] v-autocomplete</h1>
      <v-form readonly>
        <v-autocomplete
          v-model="modelValue"
          :items
          chips
          closable-chips
          multiple
        />
        <v-combobox
          v-model="modelValue"
          :items
          chips
          closable-chips
          multiple
        />
        <v-select
          v-model="modelValue"
          :items
          chips
          closable-chips
          multiple
        />
      </v-form>

      <h1>v-autocomplete[readonly]</h1>
      <v-autocomplete
        v-model="modelValue"
        :items
        chips
        closable-chips
        multiple
        readonly
      />

      <h1>v-combobox[readonly]</h1>
      <v-combobox
        v-model="modelValue"
        :items
        chips
        closable-chips
        multiple
        readonly
      />

      <h1>v-select[readonly]</h1>

      <v-select
        v-model="modelValue"
        :items
        chips
        closable-chips
        multiple
        readonly
      />
    </v-container>
  </v-app>
</template>

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

  const items = ['a', 'b', 'c', 'd']
  const modelValue = ref(['a', 'c'])
</script>

Copy link
Contributor

@J-Sek J-Sek left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Works, very clean

@J-Sek J-Sek changed the title fix: 22349 Closable Chips respect readonly fix(VSelects): closable chips should respect readonly Nov 26, 2025
@J-Sek J-Sek added T: bug Functionality that does not work as intended/expected C: VSelect C: VCombobox C: VAutocomplete C: VChip labels Nov 26, 2025
@J-Sek
Copy link
Contributor

J-Sek commented Dec 1, 2025

What about disabled?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

C: VAutocomplete C: VChip C: VCombobox C: VSelect T: bug Functionality that does not work as intended/expected

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[Bug Report][3.10.11] closable-chips does not respect readonly

3 participants