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

Vue 3 support #28

Closed
maxiloc opened this issue Jul 21, 2020 · 5 comments
Closed

Vue 3 support #28

maxiloc opened this issue Jul 21, 2020 · 5 comments

Comments

@maxiloc
Copy link

maxiloc commented Jul 21, 2020

I am currently migrating some of my apps to Vue3 which is currently in RC-2.

There is a few breaking changes to the directive API making the library not compatible.

I found a workaround in my apps by doing:

import VueInputAutowidth from 'vue-input-autowidth';

export default {
  [...]
  directives: {
    autowidth: {
      beforeMount: VueInputAutowidth.bind,
      mounted: VueInputAutowidth.inserted,
      updated: VueInputAutowidth.componentUpdated,
      unmounted: VueInputAutowidth.unbind,
    },
  },
}

but it would be nice to add support.

@ghost
Copy link

ghost commented Sep 13, 2021

Vue 3 doesn't work. Please fix.

@syropian
Copy link
Owner

I'm on vacation this week, but I will definitely look into this when I'm back.

@ghost
Copy link

ghost commented Sep 13, 2021

Ok thx

@syropian
Copy link
Owner

Hi all, I'm still finishing up tests and docs, but you can try out the Vue 3 version by installing the next tag

npm install --save vue-input-autowidth@next
# or...
yarn add vue-input-autowidth@next

Please note there's one small breaking change: The comfortZone option should now be a string that is any valid "size" value in CSS. Eg 10px, 4rem, 2ch, etc.

All the code, and docs-in-progress live on the v2 branch if you'd like to check it out.

@ghost
Copy link

ghost commented Sep 19, 2021

Thx

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

No branches or pull requests

2 participants