Using Ray with Vue.js
Vue.js is a progressive JavaScript framework for building user interfaces. Use Ray to help you debug when developing Vue.js applications and components.
#Installing the package
npm install vue-ray
yarn add vue-ray
#Installing the plugin
#Vue 3
import { createApp } from 'vue'; import App from './App.vue'; import RayPlugin from 'vue-ray'; const app = createApp(App); app.use(RayPlugin); app.mount('#app');
#Vue 2
import Vue from 'vue'; import RayPlugin from 'vue-ray'; Vue.use(RayPlugin);
Once the plugin is installed, you can access the helper function as this.$ray() from within your Vue components.
<script>
export default {
methods: {
sendToRay() {
this.$ray('Hello from Vue!');
}
}
}
</script>
#Usage
All JavaScript methods are available when using Vue.js.
#What's next?
Now that Ray is installed in your Vue.js project, see what you can use it for.