403Webshell
Server IP : 209.209.40.120  /  Your IP : 216.73.217.112
Web Server : Microsoft-IIS/10.0
System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586
User : NEWWWW$ ( 0)
PHP Version : 8.3.30
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/framework7/src/pages/chat/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/framework7/src/pages/chat/usernotifications.vue
<template>
  <f7-page name="notifications">
    <f7-navbar title="Notifications" back-link="Back"></f7-navbar>
    <f7-block-title>
      <h1><b>Recent Notifications</b></h1>
    </f7-block-title>
    <f7-block>
      <f7-list v-for="(notification, i) in user_notifications" :key="i">
        <h2 v-html="notification.title"></h2>
        <p v-html="notification.messageDetails"></p>
        <span
          class="small-time"
          v-html="
            moment(notification.dateCreated).format('MMMM Do YYYY, h:mm a')
          "
        ></span>
      </f7-list>
    </f7-block>
  </f7-page>
</template>
<script>
import moment from "moment";
import firebase from "firebase";
export default {
  data() {
    return {
      posts: [],
      myUrl: "https://247sms.com",
    };
  },
  computed: {
    user_notifications() {
      return this.$store.getters.user_notifications;
    },
    user() {
      return this.$store.getters.user;
    },
  },
  methods: {},
  created() {
    var payload = {};
    payload.email = this.user[0].email;
    payload.domain = this.user[0].domain;
    this.$store.dispatch("getUserNotifications", payload);
    this.$store.dispatch("resetTotalNotify", payload);
  },
};
</script>
<style scoped>
.div {
  margin-top: 0.3px;
}
.small-time {
  font-size: 0.7em;
  margin-top: 0.01px;
}
</style>

Youez - 2016 - github.com/yon3zu
LinuXploit