0.3.1 • Published 11 months ago

@prolazydev/vue-m v0.3.1

Weekly downloads
-
License
MIT
Repository
-
Last release
11 months ago

vue-m ⚒ WORK IN PROGRESS

npm npm license code with hearth by NHN Cloud

Introduction

vue-m is a Vue 3 UI component library designed to enhance the user interface of your Vue applications. It provides a collection of modern and responsive UI components that are easy to install and use.

Features

  • Modern and responsive UI components
  • Easy installation and usage
  • Built with Vue 3 and TypeScript
  • Highly customizable and flexible

Installation

You can install the vue-m package using npm or Yarn:

npm install vue-m

or

yarn add vue-m

Usage

To use the components from vue-m, register them in main.ts:

import { createApp } from 'vue';
import vueM from 'vue-m'; // Import the components
import 'vue-m/dist/vue-m.css'; // Import the styling (Optional)
import App from './App.vue';

createApp(App)
   .use(vueM)
   .mount('#app');

Then use the components like this:

<template>
  <div>
      <m-btn text="Write here" color='success' /> <!-- color is 'primary by default' -->
      <!-- or -->
      <m-btn>
         <div>
            Custom element inside the button 
         </div>
      </m-btn>
  </div>
</template>

TODO

  • Create the todos :> Doing
0.3.1

11 months ago

0.3.0

11 months ago

0.2.2

11 months ago

0.2.0

11 months ago

0.1.4

12 months ago

0.1.3

12 months ago

0.1.2

12 months ago

0.1.1

12 months ago

0.1.0

12 months ago