EGOIST

Results 413 comments of EGOIST

Ah this makes sense, but you still need to manually update site title in `new LogLive` right? btw, your changelog format is incorrect, the change title should use `##` instead.

Add `Access-Control-Allow-Origin: *` header to the response of your markdown file?

This is what we use https://github.com/egoist/loglive/blob/5e213ded2c77fb98b7737b4ce6680e08c1ce954b/src/utils/renderer.js#L2 I think it's using the local timezone?

Not sure if it's caused by this, but  ![](https://user-images.githubusercontent.com/8784712/81281315-41ae8900-908c-11ea-8c88-45f82928ff55.png) a zero is missing at the end, it should be `2020-05-07T09:00:00`

maybe we can use some better colors rather than simply reversing text color and background color.

Thanks, can you use a cross-browser approach? It seems only works for webkit

I think only `Name, Email, and Message` are required, btw forget `FormSimple`, it's my half-baked project (not working currently)

Maybe we need to make the API more low level like: ```js import ga from 'vue-ga' ga.init('trackId') router.afterEach(to => { ga.set('page', to.fullPath) ga.set('userId', userId) ga.pageview(to.fullPath) }) ```

I will do this if I get some time, but as always PR is very welcome and appreciated 😄

Hmm but honestly there's no special things that were made for Vue.js for now, you can directly use @lukeed 's https://github.com/lukeed/ganalytics maybe we can make a vue component which wraps...