0.1.2 • Published 1 year ago

f-vue-plugins v0.1.2

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

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>