material-vue / material-vue

Vue 3 component library based on the Material 3 design system

Home Page:https://material3-vue.web.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Material Vue

UI components for each your new project, made according to m3 guidelines.

npm

Installation

You can install Material Vue from NPM:

npm install @korpusovmax/material-vue

Setup project

After installation all you need to fast start is to add some lines to your index.js in vue project.

import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
// import lib
import MaterialVue from '@korpusovmax/material-vue'
// import styles
import "@korpusovmax/material-vue/style.css"

const app = createApp(App)
// use as plugin
app.use(MaterialVue)

app.mount('#app')

About

Vue 3 component library based on the Material 3 design system

https://material3-vue.web.app/


Languages

Language:CSS 56.0%Language:Vue 36.7%Language:JavaScript 6.9%Language:HTML 0.5%