%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/ugotscom/bos_naturals/resources/js/components/
Upload File :
Create Path :
Current File : /home/ugotscom/bos_naturals/resources/js/components/ExampleComponent.vue

<template>
    <div class="container">
        <h1>hello ppl</h1>
        <div class="row justify-content-center">
            <div class="col-md-8">
                <div class="card">
                    <div class="card-header">Example Component</div>

                    <div class="card-body">
                      <ul>
                          <li v-for="noti in allNotifications" :key="noti.id">{{noti}}</li>
                      </ul>
                    </div>
                </div>
            </div>
        </div>
    </div>
</template>

<script>
    export default {
         data(){
             return{
          allNotifications: [],
          unreadNotifications: [],
          test:'',
             }
         },
        mounted() {
            
                   Echo.private('App.User.1')
    .notification((notification) => {
        alert(notification);
         this.$toaster.success('New Notification'),
     this.allNotifications.push(notification.offerText)
        console.log(notification.offerText);
    });
        }
    }
</script>

Zerion Mini Shell 1.0