Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vue-mateilwind

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-mateilwind - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

src/types/index.d.ts

4

package.json
{
"name": "vue-mateilwind",
"version": "0.1.1",
"version": "0.1.2",
"description": "Vue 3 components library based on TypeScript",

@@ -18,3 +18,3 @@ "author": {

},
"types": "src/components.d.ts",
"types": "src/types/index.d.ts",
"private": false,

@@ -21,0 +21,0 @@ "license": "MIT",

@@ -1,11 +0,35 @@

# Vue 3 + Typescript + Vite
# Install
This template should help get you started developing with Vue 3 and Typescript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
You need [Vue.js](https://v3.vuejs.org/) version 3.0+
## Recommended IDE Setup
```bash
# npm
npm install vue-mateilwind
```
- [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar)
```bash
# yarn
yarn add vue-mateilwind
```
## Type Support For `.vue` Imports in TS
# Usage
Since TypeScript cannot handle type information for `.vue` imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates. However, if you wish to get actual prop types in `.vue` imports (for example to get props validation when using manual `h(...)` calls), you can enable Volar's `.vue` type support plugin by running `Volar: Switch TS Plugin on/off` from VSCode command palette.
## All components
```js
import { createApp } from 'vue'
import VueMateilwind from 'vue-mateilwind'
import 'vue-mateilwind/dist/style.css'
createApp.use(Equal)
```
## Or individual components
```js
import { createApp } from 'vue'
import { Button, Select } from 'vue-mateilwind'
import 'vue-mateilwind/dist/style.css'
createApp.use(Button).use(Select)
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc