forked from vuematerial/vue-material
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathError.vue
More file actions
19 lines (18 loc) · 738 Bytes
/
Error.vue
File metadata and controls
19 lines (18 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<template>
<page-content page-title="Error">
<div class="main-content">
<section>
<h2 class="md-headline">Hmmm. Too bad</h2>
<p>Are you searching for a new component? Or maybe you have an question? Get in touch!</p>
<md-button class="md-primary md-raised" href="mailto:marcosvmmoura@gmail.com?Subject=Vue%20Material%20-%20Question" target="_blank" rel="noopener">E-mail</md-button>
<md-button class="md-primary md-raised" href="https://github.com/marcosmoura/vue-material/issues/new" target="_blank" rel="noopener">New Issue</md-button>
</section>
</div>
</page-content>
</template>
<style lang="scss" scoped>
section {
margin-top: 64px;
text-align: center;
}
</style>