sysvale-notification-screen
v1.2.2
Published
Pacote de notificações da Sysvale
Downloads
4
Readme
sysvale-notification-screen
Pacote de notificações da Sysvale
Instalação do pacote
npm i sysvale-notification-screen
Utilização
/** My Component */
<template>
<notification-screen :url="url" />
</template>
<script>
import NotificationScreen from 'sysvale-notification-screen';
export default {
components: {
NotificationScreen,
},
data() {
return {
url: 'https://endpoint/get-notifications',
};
},
};
</script>