Justin Kames

Results 23 comments of Justin Kames

I implemented it like this with v1.3.5 from NPM. ``` .wrapper canvas#foo(ref="foo") import { Gauge } from 'gaugeJS/dist/gauge.min' export default { name: 'SomeComponent', mounted () { this.initGauge() }, methods: {...

> We have the same problem here at Kuzzle and are currently using the same solution as thomergil. Please, merge the PR from @ageddesi Let me have a look!

@ageddesi @xbill82 I merged the PR and released the package as 1.5.5 on NPM. Can you confirm your issue is solved? Because in my sample TS project it unfortunately isn't....

You might have already read this but here is more detail on how to create plugins for Vue.js @ https://vuejs.org/v2/guide/plugins.html ``` // calls `MyPlugin.install(Vue) Vue.use(MyPlugin) ``` The install function is...

@tuvokki Something like this : ``` Logger = { debug () { console.log('var') }, info () { console.log('var') }, fatal () { console.log('var') }, /// use params for new config...

@tuvokki > I think you're on the right track regarding the desired functionality here. I wouldn't go as far as (dynamically) adding new loglevels here. For my use-case changing the...

@Thiyagarajan-A I added an index.d.ts file. Can you check if this is working for you? Type definitions are now included in /dist/lib/types/index.d.ts npm i --save [email protected] https://www.npmjs.com/package/vuejs-logger/v/1.5.4-beta.2 Thanks!

Thanks @Thiyagarajan-A, let me check that.

@Thiyagarajan-A can you try again with version 1.5.5-beta.1, this should solve it. Will create 1.5.5 if it is ok.