vue3-component-library-ts

0.0.1 • Public • Published

Vue 3 Component Library

A simple Vue 3 Component Library with TypeScript and Vite.

Quickstart

Build library

vite build

Use this component library in other Vue 3 project.

npm install vue3-component-library-ts

# OR

npm install /path/to/vue3-component-library-ts
<template>
  <div>
    <Heading :text="'Hello world'" />
  </div>
</template>

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

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

Package Sidebar

Install

npm i vue3-component-library-ts

Weekly Downloads

0

Version

0.0.1

License

MIT

Unpacked Size

2.9 kB

Total Files

9

Last publish

Collaborators

  • quanvu