
Vue plugin
Simple Analytics is a clean, simple, and privacy friendly analytics tool. Actionable data in a beautiful dashboard. It does not use cookies and you can bypass ad blockers. Make sure to signup to get most value out of this plugin.
Install
Just run this command to install Simple Analytics for Vue:
npm install simple-analytics-vue
Import in app
Import the plugin and add it to Vue.use
. You can add a skip
option which will define when page views should be skipped. This can be useful if you want to skip page views from yourself when developing your app.
;; Vue;
You can also pass a function or promise to skip
which will be validated before injecting the Simple Analytics embed code:
;Vue;
You can also optionally specify a custom domain to bypass ad blockers. Read more about this in our documentation.
Vue;
Events
To send an event use the globally available saEvent
method.
// ~/src/components/Comment.vue methods: { // code to like comment this }
Nuxt
Create a file in your plugin folder with the name simple-analytics.js
:
// ~/plugins/simple-analytics.js ;; Vue;
Then on your nuxt.config.js
, make sure to include the plugin with ssr: false
as we only want to run it on the client:
// nuxt.config.js plugins: src: '~/plugins/simple-analytics.js' ssr: false
If you need any additional configuration options (as the ones mentioned above), you just need to apply to your plugin.