0.0.2-alpha.4 • Published 12 months ago

@quantumui/vue v0.0.2-alpha.4

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

Quantum Vue

A Vue 3 UI Framework build with TypeScript and Vite.

Quickstart

Build library

vite build

Use this component library in other Vue 3 project.

npm install quantum-vue

# OR

npm install /path/to/quantum-vue
<template>
  <div>
    <Heading :text="'Hello world'" />
  </div>
</template>

<script lang="ts">
import { Heading} from 'quantum-vue'; // Update the import path with the correct location and name of the component

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