
Security News
Node.js Moves Toward Stable TypeScript Support with Amaro 1.0
Amaro 1.0 lays the groundwork for stable TypeScript support in Node.js, bringing official .ts loading closer to reality.
vue3-material
Advanced tools
vue3-material is a library of UI components specifically made with Vue.js 3 in mind, which adhere to the Google Material Design specification.
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>
This project is in development, so all contributions are welcomed.
MIT
FAQs
Vue 3 components which adhere to the material design spec
The npm package vue3-material receives a total of 276 weekly downloads. As such, vue3-material popularity was classified as not popular.
We found that vue3-material demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Amaro 1.0 lays the groundwork for stable TypeScript support in Node.js, bringing official .ts loading closer to reality.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.