Once you have your app ID, you can import the RaydiusVuePlugin into your project.
Example:
// main.js import { RaydiusVuePlugin } from "@raydius/vue"; import App from "./App.vue"; import { createApp } from "vue"; // import style import "@raydius/vue/style.css"; const config = { appId: "xxx", } createApp(App) .use(RaydiusVuePlugin, { config, }) .mount("#app"); // Some code
Last updated 2 months ago