Sign In

@shipeasy/sdk-vue

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@shipeasy/sdk-vue

Vue 3 integration for ShipEasy feature flags and experimentation

latest
npmnpm
Version
1.0.0
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

@shipeasy/sdk-vue

Vue 3 integration for ShipEasy feature flags and experimentation.

Install

pnpm add @shipeasy/sdk-vue @shipeasy/sdk

Usage

// main.ts
import { createApp } from "vue";
import { createFlaglab } from "@shipeasy/sdk-vue";
import App from "./App.vue";

const app = createApp(App);
app.use(createFlaglab({ sdkKey: "se_pub_..." }));
app.mount("#app");
<!-- MyComponent.vue -->
<script setup lang="ts">
import { useFlaglab, useFlag, useExperiment } from "@shipeasy/sdk-vue";

const { identify } = useFlaglab();
const newDashboard = useFlag("new_dashboard");
const hero = useExperiment("hero_cta", { buttonText: "Get started" });

identify({ user_id: "u_123", plan: "pro" });
</script>

<template>
  <div v-if="newDashboard">New dashboard</div>
  <button>{{ hero.params.buttonText }}</button>
</template>

FAQs

Package last updated on 17 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts