v-easy-components

Vue3 UI Components

Usage no npm install needed!

<script type="module">
  import vEasyComponents from 'https://cdn.skypack.dev/v-easy-components';
</script>

README

v-easy-components

v-easy-components (support Vue3)

Build Status

Document (not up-to-date)

Install

npm install v-easy-components@next -D

or

yarn add v-easy-components@next -D

Quick Start

import { createApp } from 'vue'
import 'v-easy-components/dist/theme-chalk/index.css'
import VEasyComponents from 'v-easy-components'

const app = createApp()

app.use(VEasyComponents)

Browser Start

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>v-easy-components</title>
    <script src="https://unpkg.com/vue@3.0.0/dist/vue.global.js"></script>
    <script src="https://unpkg.com/v-easy-components/dist/index.js"></script>
    <link
      rel="stylesheet"
      href="https://unpkg.com/v-easy-components/dist/theme-chalk/index.css"
    />
  </head>
  <body>
    <div id="root"></div>
  </body>
  <script>
    const { createApp } = Vue

    const App = createApp({
      template: `<ve-button @click="$message('Test')">Click</ve-button>`
    })
    App.use(VEASY)

    App.mount('#root')
  </script>
</html>

Browser Support (IE is currently not supported)

Modern browsers and Internet Explorer 11+.

Changelog

Detailed changes for each release are documented in the release notes.

LICENSE

MIT

Note

If you have any problems during use, you can raise issues, this project will be kept updated at all times, but due to limited personal energy, please clone by yourself for commercial use.