-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
53 lines (49 loc) · 2.13 KB
/
script.js
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
var app= new Vue({
el: '#app',
vuetify: new Vuetify(),
data: {
drawer: null,
items: [
{ title: 'Home', icon: 'mdi-dashboard' },
{ title: 'About', icon: 'mdi-question_answer' },
],
itemsCaroussels: [
{ title: 'Home', src: 'http://7-themes.com/data_images/out/36/6892516-black-abstract.jpg' },
{ title: 'About', sec: 'http://7-themes.com/data_images/out/3/6777060-beautiful-winter-landscape.jpg' },
],
items2: [ ['mdi-home','h'],
],
items5: [
{
avatar: 'https://cdn.vuetifyjs.com/images/lists/1.jpg',
title: 'Brunch this weekend?',
subtitle: "<span class='text--primary'>Ali Connors</span> — I'll be in your neighborhood doing errands this weekend. Do you want to hang out?",
},
{ divider: true, inset: true },
{
avatar: 'https://cdn.vuetifyjs.com/images/lists/1.jpg',
title: 'Brunch this weekend?',
subtitle: "<span class='text--primary'>Ali Connors</span> — I'll be in your neighborhood doing errands this weekend. Do you want to hang out?",
},
{ divider: true, inset: true }, {
avatar: 'https://cdn.vuetifyjs.com/images/lists/1.jpg',
title: 'Brunch this weekend?',
subtitle: "<span class='text--primary'>Ali Connors</span> — I'll be in your neighborhood doing errands this weekend. Do you want to hang out?",
},
],
items3: [
{ active: true, title: 'Jason Oner', avatar: 'https://cdn.vuetifyjs.com/images/lists/1.jpg' },
{ active: true, title: 'Ranee Carlson', avatar: 'https://cdn.vuetifyjs.com/images/lists/2.jpg' },
{ title: 'Cindy Baker', avatar: 'https://cdn.vuetifyjs.com/images/lists/3.jpg' },
{ active: true, title: 'Ranee Carlson', avatar: 'https://cdn.vuetifyjs.com/images/lists/2.jpg' },
],
items4: [
{ title: 'Travis Howard', avatar: 'https://cdn.vuetifyjs.com/images/lists/5.jpg' },
],
},
methodes:{
Doit:function() {
alert('s');
}
},
});