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

feat(VInput): add dimensions support to VInput #19600

Merged
merged 1 commit into from
Apr 13, 2024

Conversation

yuwu9145
Copy link
Member

@yuwu9145 yuwu9145 commented Apr 13, 2024

  • Add maxWidth, minWidth & width props to VInput
  • Heights are restricted by densities

Description

Markup:

<template>
  <v-text-field
    :max-width="550"
    :min-width="500"
    :width="600"
    :style="{ width: '700px' }"
  />
  <v-select
    :max-width="550"
    :min-width="500"
    :width="600"
  />
  <v-autocomplete
    :max-width="550"
    :min-width="500"
    :width="600"
  />
  <v-combobox
    :max-width="550"
    :min-width="500"
    :width="600"
  />
  <v-file-input
    :max-width="550"
    :min-width="500"
    :width="600"
  />
  <v-textarea
    :max-width="550"
    :min-width="500"
    :width="600"
  />
</template>

<script>
  export default {
  }
</script>

@yuwu9145 yuwu9145 changed the base branch from master to dev April 13, 2024 00:17
@yuwu9145 yuwu9145 changed the title feat(VInput): add dimensions support to v input feat(VInput): add dimensions support to VInput Apr 13, 2024
@johnleider johnleider added this to the v3.6.0 (Nebula) milestone Apr 13, 2024
@johnleider johnleider added T: feature A new feature C: VInput VInput labels Apr 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C: VInput VInput T: feature A new feature
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants