Skip to content

Instantly share code, notes, and snippets.

@Iheanacho-ai
Created April 14, 2022 17:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Iheanacho-ai/0f23cf72b2a43be4251f2fb2aa22b7d8 to your computer and use it in GitHub Desktop.
Save Iheanacho-ai/0f23cf72b2a43be4251f2fb2aa22b7d8 to your computer and use it in GitHub Desktop.
<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