Nikolaus Rosenmayr

Results 14 comments of Nikolaus Rosenmayr

Within your main file you could use this kind of hack: ```TypeScript import Snotify from "vue-snotify"; if (showNotifications) { Vue.use(snotify); } else { // implement stub instance Vue.prototype.$snotify = [...

For the impatient, I see two more options: * https://github.com/artemsky/vue-snotify/blob/master/src/components/Snotify.vue#L140 internally `vue-snotify` is using the very same mechanism. The component is listening on message `'snotify'`. * access the notifier service...

You need to use a parameter name with your action function. The current toast data can not made available on `this`, since you use an ES5 arrow-function. It is provided...

As a workaround, you could use your own import file `vue.ts`, with the following content: ```TypeScript import Vue from "vue"; // tslint:disable:no-submodule-imports import { SnotifyService } from "vue-snotify/SnotifyService"; declare module...

This is not the fault of `vue-property-decorator`, this is not a bug, its a technical limitation of VueJS!! @movalz VueJS does not support inheritance at all. AFAIK you can not...

`vue-class-component` is doing this. see: https://github.com/vuejs/vue-class-component/blob/16433462b40aefecc030919623f17b0ec9afe61c/src/component.ts#L54 All properties of your class are copied to the configuration object for Vue. There is a check. If the property consists of a getter/setter,...

Because of PR [8506](https://github.com/puppeteer/puppeteer/pull/8506) (since release 14.4.0), it's not `_client` anymore but it is `_client()`. So use: ```JavaScript await page._client().send('Page.setDownloadBehavior', { behavior: 'allow', downloadPath: tempFolderPath, }) ``` See: [Page.ts](../blob/main/src/common/Page.ts)

The PR seems already merged with commit d9ae52ca4624bd2fb018c94206952d8214808050 So, this can be closed?

the missing stack trace is: ``` Caused by: org.gradle.internal.typeconversion.UnsupportedNotationException: Cannot convert the provided notation to a File or URI: java.io.BufferedWriter@7107255. The following types/formats are supported: - A String or CharSequence...