1.0.8 • Published 4 years ago

vue3-material v1.0.8

Weekly downloads
257
License
MIT
Repository
github
Last release
4 years ago

vue3-material

vue3-material is a library of UI components specifically made with Vue.js 3 in mind, which adhere to the Google Material Design specification.

Installation and Usage

Install vue3-material using npm or yarn:

npm install vue3-material --save
yarn add vue3-material

Import or require vue3-material in your code:

import { createApp } from 'vue';
import App from './app.vue';
import Vue3Material from 'vue3-material';

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

Or import individual components:

import { defineComponent } from 'vue';
import { VmButton, VmContainer } from 'vue3-material';

export default defineComponent({
    components: {
        VmButton,
        VmContainer,
    }
});

Then use in your template:

<template>
    <vm-container>
        <vm-button>It works!</vm-button>
    </vm-container>
</template>

Contributing

This project is in development, so all contributions are welcomed.

License

MIT

1.0.8

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.2

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago