npm install f-vue-plugins --save
按需引入
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>