-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathApp.vue
More file actions
34 lines (31 loc) · 752 Bytes
/
App.vue
File metadata and controls
34 lines (31 loc) · 752 Bytes
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 id="app">
<img alt="Vue logo" src="./assets/logo.png" />
<NotificationBanner
debug="true"
notificationVariant="success"
notificationApiUrl="sample-notifications.json"
filter="user=foobar"
notificationIcon="info"
/>
</div>
</template>
<script>
import NotificationBanner from './components/NotificationBanner.vue';
export default {
name: 'app',
components: {
NotificationBanner,
},
};
</script>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>