common-notification
v1.4.6
Published
notification
Downloads
509
Readme
公共消息模块组件
安装依赖
npm install common-notification
开始使用
1:在main.js文件中引入
import SelfNotification from 'common-notification'
Vue.use(SelfNotification)
2:在需要的文件中使用
<SelfNotification :requestUrl="url" :token="token" :socketPath="WebSocketPath" :isOpen="isOpen"></SelfNotification>
data(){
return{
url: 'https://profile-api.ddmarketinghub.com',
token: "Bearer " + yourIdToken,
WebSocketPath: notification的websocket链接,
isOpen: 默认是否打开 true/false
}
}