For the complete documentation index, see llms.txt. This page is also available as Markdown.

Set Up Your App with Raydius Vue SDK

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