Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 314 Bytes

File metadata and controls

24 lines (18 loc) · 314 Bytes

快速上手

Install

# Using npm
npm i vant-react -S

# Using yarn
yarn add vant-react

Quickstart

import React from 'react';
import { Button } from 'vant-react';
import 'vant-react/dist/index.css';

const App = () => {
    return (
        <Button text='Hello World' />
    );
};