1.0.1 • Published 3 years ago

dcocdui-plus v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Install

Install Dcocd UI

Using npm:

npm install dcocdui-design --save

Using a script tag for global use:

<script type="text/javascript" src="dcocdui.min.js"></script>
<link rel="stylesheet" href="dist/styles/dcocdui.css">

You can find more info on the website.

Usage

<template>
    <Slider v-model="value" range />
</template>
<script>
    export default {
        data () {
            return {
                value: [20, 50]
            }
        }
    }
</script>

Using css via import:

import 'view-design/dist/styles/dcocdui.css';