Youri van Mill
Youri van Mill
I meant just like: https://alligator.io/vuejs/add-v-model-support/ But then use the new Composition API
Same error over here `Argument of type 'PluginFunction' is not assignable to parameter of type 'PluginObject | PluginFunction'.` * vue: 2.6.8 * vue-class-component: 7.0.1 * vuelidate: 0.7.4
@janesser ``` { "compilerOptions": { "target": "esnext", "module": "esnext", "strict": true, "jsx": "preserve", "importHelpers": true, "moduleResolution": "node", "experimentalDecorators": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "sourceMap": true, "baseUrl": ".", "types": [ "jest",...
I can say, after running `yarn-deduplicate` the issues are over!
@NoahStahl update https://www.npmjs.com/package/@types/vuelidate to the latest version. Now its works!
Same here: ``` export default defineComponent({ props: { noCloseOnBackdrop: { type: Boolean, required: false } } }) ```  It looks like this had to do with `noCloseOnBackdrop` is in...
Looks like it doesn't... ``` const date = new Date(2016, 2, 1, 0,0, 1); const formatted = toDate(date, { timeZone: 'Europe/Amsterdam' }) console.info(formatted); console.info(format(formatted, 'yyyy-MM-dd HH:mm:ss XXX OOOO', { timeZone:...
6 days ago some PR were merged!
@jolting Added `preset: 'ts-jest/presets/js-with-ts-esm',` and `transformIgnorePatterns: [ "/node_modules/(?!(date-fns)/)" ]` To jest.config.js And `"allowJs": true` To tsconfig.json. There is no need for babel as I removed every babel dependency in my...
You can npm install my fork until the maintainer decides to merge my PR