Blame view

babylon-vue-4.0.0/src/views/common/Error.vue 926 Bytes
0f94839d   함상기   babylon client fo...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  <template>
      <div class="exception-body error">
          <div class="mobile-banner">
              <img src="/layout/images/logo-mobile.svg" alt="prestige-layout" />
          </div>
          <div class="exception-panel">
              <div class="logo">
                  <img src="/layout/images/logo.svg" alt="prestige-layout" />
              </div>
          </div>
          <div class="exception-card">
              <div class="top-border"></div>
              <div class="exception-content">
                  <h1>Error Occured</h1>
                  <p>Something went wrong.</p>
                  <router-link to="/">
                      <Button label="Go To Dashboard" @click="goDashboard" />
                  </router-link>
              </div>
          </div>
      </div>
  </template>
  
  <script>
  export default {
      methods: {
          goDashboard() {
              window.location = '/#/';
          },
      },
  };
  </script>
  
  <style scoped></style>