Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

@livestorm/ui-vue

Package Overview
Dependencies
Maintainers
5
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@livestorm/ui-vue

Livestorm UI components for Vue 3

latest
npmnpm
Version
1.1.3
Version published
Maintainers
5
Created
Source

Livestorm Vue Components Library

Install

npm install @livestorm/ui-vue

Storybook

All the components are described in our Storybook: https://storybook.livestorm.co

Usage

Import style:

import "@livestorm/ui-vue/dist/style.css";

Use components in your Vue files:

<template>
  <div>
    <LsButton class="base-button-primary"> Hello World </LsButton>

    <LsCheckbox
      :value="true"
      label="My label"
      for-id="my-id"
      tooltip="My tooltip"
    />
  </div>
</template>

<script>
  import { LsButton, LsCheckbox } from "@livestorm/ui-vue";

  export default {
    components: {
      LsButton,
      LsCheckbox,
    },
  };
</script>

Compatibility

Compatible with Vue 2 only for now. Support for Vue 3 is coming.

FAQs

Package last updated on 31 Jul 2023

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