f-vue-plugins
v0.1.2
Published
``` npm install f-vue-plugins --save ```
Downloads
5
Readme
f-vue-plugins
install
npm install f-vue-plugins --save
use
按需引入
import {SendVerificationCode} from 'f-vue-plugins'
createApp(App).use(SendVerificationCode)
全局引入
import ffVueComponents from 'f-vue-plugins'
createApp(App).use(ffVueComponents)
页面使用
<template>
<div class="about">
<h1>This is an about page</h1>
<send-verification-code></send-verification-code>
</div>
</template>