-
Notifications
You must be signed in to change notification settings - Fork 26
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
Vue3 Support #44
Comments
Hello, the current project I am using this on doesn’t have any plans to upgrade to vue 3 yet. It’s not in my immediate schedule but eventually I will. |
What about now? 👀 |
What i did was changing the methods inside |
I honestly don't have a need for it yet, which is why I haven't prioritize it, but I did look into it briefly last year and stopped because styleguidest did not support vue 3 yet, and the documentations page requires it. I created an issue to see if anyone wanted to contribute and help us move to storybook which does support vue 3. I'm more than open to contributions, even under beta if anyone wants to create a PR with the necessary changes for vue3. |
🎉 This issue has been resolved in version 3.0.0-beta.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Vue3 seems like it wanted below, particularly filter was throwing errors. import { createApp } from 'vue';
const app = createApp(App);
import { InputFacade, facade, filter } from 'vue-input-facade';
app.component('InputFacade', InputFacade);
app.directive('facade', facade);
app.config.globalProperties.$filters = {
facade: filter
}; |
Ah yes, filters are not supported in vue3. That needs to be removed. |
Vue 3 doesn't support Vue.filter and needed to be replaced by a standard utility function. closes: RonaldJerez#44
Vue 3 doesn't support Vue.filter and needed to be replaced by a standard utility function. closes RonaldJerez#44
Vue 3 doesn't support Vue.filter and needed to be replaced by a standard utility function. closes RonaldJerez#44
Vue 3 doesn't support Vue.filter and needed to be replaced by a standard utility function. closes RonaldJerez#44
Vue 3 doesn't support Vue.filter anymore but we can use the masker directly instead. closes RonaldJerez#44
Vue 3 doesn't support Vue.filter anymore but we can use the masker directly instead. closes #44
🎉 This issue has been resolved in version 3.0.0-beta.3 🎉 The release is available on: Your semantic-release bot 📦🚀 |
When using v3 and nuxt 3.6.5 i get the following error: Named export 'facade' not found. The requested module 'vue-input-facade' is a CommonJS module, which may not support all module.exports as named exports. I created a pugin as follows:
|
Upgrades dependencies, migrates to storybook + vite, removes default export. BREAKING CHANGE: Users will have to use es6-style named imports instead. closes RonaldJerez#44
Upgrades dependencies, migrates to storybook + vite, removes default export. BREAKING CHANGE: Users will have to use es6-style named imports instead. closes RonaldJerez#44
Upgrades dependencies, migrates to storybook + vite, removes default export. BREAKING CHANGE: Users will have to use es6-style named imports instead. closes RonaldJerez#44
Upgrades dependencies, migrates to storybook + vite, removes default export. BREAKING CHANGE: Users will have to use es6-style named imports instead. closes RonaldJerez#44
Upgrades dependencies, migrates to storybook + vite, removes default export. BREAKING CHANGE: Users will have to use es6-style named imports instead. closes RonaldJerez#44
Upgrades dependencies, migrates to storybook + vite, removes default export. BREAKING CHANGE: Users will have to use es6-style named imports instead. closes RonaldJerez#44
Vue 3 doesn't support Vue.filter anymore but we can use the masker directly instead. closes RonaldJerez#44
Upgrades dependencies, migrates to storybook + vite, removes default export. BREAKING CHANGE: Users will have to use es6-style named imports instead. closes RonaldJerez#44, closes RonaldJerez#52
Upgrades dependencies, migrates to storybook + vite, removes default export. BREAKING CHANGE: Users will have to use es6-style named imports instead. closes RonaldJerez#44, closes RonaldJerez#52
Upgrades dependencies, migrates to storybook + vite, removes default export. BREAKING CHANGE: Users will have to use es6-style named imports instead. Also merges in changes from upstream master since beta branch diverged. closes #44, closes #52 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sarah Umi Leventhal <[email protected]> Co-authored-by: Sarah Leventhal <[email protected]> Co-authored-by: Ronald Jerez <[email protected]> Co-authored-by: Reuk Bundara <[email protected]>
🎉 This issue has been resolved in version 3.0.0-beta.4 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Hi, I am wondering if there are any plans for vue3 support for this package? Thanks a lot
The text was updated successfully, but these errors were encountered: