Created
April 14, 2022 17:59
-
-
Save Iheanacho-ai/0f23cf72b2a43be4251f2fb2aa22b7d8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="notifications rounded overflow-hidden shadow-lg"> | |
<div class="order-container"> | |
<h2>{{orderStatus}}</h2> | |
</div> | |
</div> | |
</template> | |
<script> | |
import { sdk } from "../../utils"; | |
export default { | |
name: 'Notification', | |
data(){ | |
return{ | |
orderStatus: "" | |
} | |
}, | |
mounted(){ | |
if(sdk.account.get !== null){ | |
try { | |
sdk.subscribe('collections.62532d2523f63b230a93.documents', response => { | |
console.log(response.payload.orderStatus, 'order status payload' ) | |
this.orderStatus = response.payload.orderStatus | |
}); | |
} catch (error) { | |
console.log(error, 'error') | |
} | |
} | |
} | |
} | |
</script> | |
<style scoped> | |
.notifications{ | |
width: 350px; | |
height: 100px; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment