xhihha1-vue-plugin
v0.0.3
Published
learn how to create vue plugin component and push to npm.
Downloads
0
Readme
xhihha1-vue-plugin
npm install:
npm install xhihha1-vue-plugin
install:
import { createApp } from 'vue';
import MyPlugin from 'xhihha1-vue-plugin';
const app = createApp(App);
app.use(MyPlugin);
Use:
<my-component></my-component>
在Vue 3应用中使用TypeScript引入自定义插件时,有时会出现找不到声明文件的问题。
使用插件的Vue 3项目中添加声明文件: 确保你的Vue 3项目中也有一个声明文件(.d.ts)来引用你的插件
declare module 'my-vue-plugin';
Vue Prop:
prop 包含 user
, api
, msg
三個屬性
<second-component :api="api" :msg="msg"></second-component>
user: {
name: String
}
api: {
root: '', // 根路徑
chat: { path: '/iems/chatbot', method: 'POST' } // chat 接口 api
}
msg: {
helloworld: String,
list: Array String
}