|
@@ -1,58 +1,144 @@
|
1
|
1
|
<template>
|
2
|
|
- <div class="hello">
|
3
|
|
- <h1>{{ msg }}</h1>
|
4
|
|
- <p>
|
5
|
|
- For a guide and recipes on how to configure / customize this project,<br>
|
6
|
|
- check out the
|
7
|
|
- <a href="https://cli.vuejs.org" target="_blank" rel="noopener">vue-cli documentation</a>.
|
8
|
|
- </p>
|
9
|
|
- <h3>Installed CLI Plugins</h3>
|
10
|
|
- <ul>
|
11
|
|
- <li><a href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-babel" target="_blank" rel="noopener">babel</a></li>
|
12
|
|
- <li><a href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-eslint" target="_blank" rel="noopener">eslint</a></li>
|
13
|
|
- </ul>
|
14
|
|
- <h3>Essential Links</h3>
|
15
|
|
- <ul>
|
16
|
|
- <li><a href="https://vuejs.org" target="_blank" rel="noopener">Core Docs</a></li>
|
17
|
|
- <li><a href="https://forum.vuejs.org" target="_blank" rel="noopener">Forum</a></li>
|
18
|
|
- <li><a href="https://chat.vuejs.org" target="_blank" rel="noopener">Community Chat</a></li>
|
19
|
|
- <li><a href="https://twitter.com/vuejs" target="_blank" rel="noopener">Twitter</a></li>
|
20
|
|
- <li><a href="https://news.vuejs.org" target="_blank" rel="noopener">News</a></li>
|
21
|
|
- </ul>
|
22
|
|
- <h3>Ecosystem</h3>
|
23
|
|
- <ul>
|
24
|
|
- <li><a href="https://router.vuejs.org" target="_blank" rel="noopener">vue-router</a></li>
|
25
|
|
- <li><a href="https://vuex.vuejs.org" target="_blank" rel="noopener">vuex</a></li>
|
26
|
|
- <li><a href="https://github.com/vuejs/vue-devtools#vue-devtools" target="_blank" rel="noopener">vue-devtools</a></li>
|
27
|
|
- <li><a href="https://vue-loader.vuejs.org" target="_blank" rel="noopener">vue-loader</a></li>
|
28
|
|
- <li><a href="https://github.com/vuejs/awesome-vue" target="_blank" rel="noopener">awesome-vue</a></li>
|
29
|
|
- </ul>
|
30
|
|
- </div>
|
|
2
|
+ <v-container>
|
|
3
|
+ <v-layout
|
|
4
|
+ text-center
|
|
5
|
+ wrap
|
|
6
|
+ >
|
|
7
|
+ <v-flex xs12>
|
|
8
|
+ <v-img
|
|
9
|
+ :src="require('../assets/logo.svg')"
|
|
10
|
+ class="my-3"
|
|
11
|
+ contain
|
|
12
|
+ height="200"
|
|
13
|
+ ></v-img>
|
|
14
|
+ </v-flex>
|
|
15
|
+
|
|
16
|
+ <v-flex mb-4>
|
|
17
|
+ <h1 class="display-2 font-weight-bold mb-3">
|
|
18
|
+ Welcome to Vuetify
|
|
19
|
+ </h1>
|
|
20
|
+ <p class="subheading font-weight-regular">
|
|
21
|
+ For help and collaboration with other Vuetify developers,
|
|
22
|
+ <br>please join our online
|
|
23
|
+ <a href="https://community.vuetifyjs.com" target="_blank">Discord Community</a>
|
|
24
|
+ </p>
|
|
25
|
+ </v-flex>
|
|
26
|
+
|
|
27
|
+ <v-flex
|
|
28
|
+ mb-5
|
|
29
|
+ xs12
|
|
30
|
+ >
|
|
31
|
+ <h2 class="headline font-weight-bold mb-3">What's next?</h2>
|
|
32
|
+
|
|
33
|
+ <v-layout justify-center>
|
|
34
|
+ <a
|
|
35
|
+ v-for="(next, i) in whatsNext"
|
|
36
|
+ :key="i"
|
|
37
|
+ :href="next.href"
|
|
38
|
+ class="subheading mx-3"
|
|
39
|
+ target="_blank"
|
|
40
|
+ >
|
|
41
|
+ {{ next.text }}
|
|
42
|
+ </a>
|
|
43
|
+ </v-layout>
|
|
44
|
+ </v-flex>
|
|
45
|
+
|
|
46
|
+ <v-flex
|
|
47
|
+ xs12
|
|
48
|
+ mb-5
|
|
49
|
+ >
|
|
50
|
+ <h2 class="headline font-weight-bold mb-3">Important Links</h2>
|
|
51
|
+
|
|
52
|
+ <v-layout justify-center>
|
|
53
|
+ <a
|
|
54
|
+ v-for="(link, i) in importantLinks"
|
|
55
|
+ :key="i"
|
|
56
|
+ :href="link.href"
|
|
57
|
+ class="subheading mx-3"
|
|
58
|
+ target="_blank"
|
|
59
|
+ >
|
|
60
|
+ {{ link.text }}
|
|
61
|
+ </a>
|
|
62
|
+ </v-layout>
|
|
63
|
+ </v-flex>
|
|
64
|
+
|
|
65
|
+ <v-flex
|
|
66
|
+ xs12
|
|
67
|
+ mb-5
|
|
68
|
+ >
|
|
69
|
+ <h2 class="headline font-weight-bold mb-3">Ecosystem</h2>
|
|
70
|
+
|
|
71
|
+ <v-layout justify-center>
|
|
72
|
+ <a
|
|
73
|
+ v-for="(eco, i) in ecosystem"
|
|
74
|
+ :key="i"
|
|
75
|
+ :href="eco.href"
|
|
76
|
+ class="subheading mx-3"
|
|
77
|
+ target="_blank"
|
|
78
|
+ >
|
|
79
|
+ {{ eco.text }}
|
|
80
|
+ </a>
|
|
81
|
+ </v-layout>
|
|
82
|
+ </v-flex>
|
|
83
|
+ </v-layout>
|
|
84
|
+ </v-container>
|
31
|
85
|
</template>
|
32
|
86
|
|
33
|
87
|
<script>
|
34
|
88
|
export default {
|
35
|
89
|
name: 'HelloWorld',
|
36
|
|
- props: {
|
37
|
|
- msg: String
|
38
|
|
- }
|
39
|
|
-}
|
40
|
|
-</script>
|
41
|
90
|
|
42
|
|
-<!-- Add "scoped" attribute to limit CSS to this component only -->
|
43
|
|
-<style scoped>
|
44
|
|
-h3 {
|
45
|
|
- margin: 40px 0 0;
|
46
|
|
-}
|
47
|
|
-ul {
|
48
|
|
- list-style-type: none;
|
49
|
|
- padding: 0;
|
50
|
|
-}
|
51
|
|
-li {
|
52
|
|
- display: inline-block;
|
53
|
|
- margin: 0 10px;
|
54
|
|
-}
|
55
|
|
-a {
|
56
|
|
- color: #42b983;
|
57
|
|
-}
|
58
|
|
-</style>
|
|
91
|
+ data: () => ({
|
|
92
|
+ ecosystem: [
|
|
93
|
+ {
|
|
94
|
+ text: 'vuetify-loader',
|
|
95
|
+ href: 'https://github.com/vuetifyjs/vuetify-loader',
|
|
96
|
+ },
|
|
97
|
+ {
|
|
98
|
+ text: 'github',
|
|
99
|
+ href: 'https://github.com/vuetifyjs/vuetify',
|
|
100
|
+ },
|
|
101
|
+ {
|
|
102
|
+ text: 'awesome-vuetify',
|
|
103
|
+ href: 'https://github.com/vuetifyjs/awesome-vuetify',
|
|
104
|
+ },
|
|
105
|
+ ],
|
|
106
|
+ importantLinks: [
|
|
107
|
+ {
|
|
108
|
+ text: 'Documentation',
|
|
109
|
+ href: 'https://vuetifyjs.com',
|
|
110
|
+ },
|
|
111
|
+ {
|
|
112
|
+ text: 'Chat',
|
|
113
|
+ href: 'https://community.vuetifyjs.com',
|
|
114
|
+ },
|
|
115
|
+ {
|
|
116
|
+ text: 'Made with Vuetify',
|
|
117
|
+ href: 'https://madewithvuejs.com/vuetify',
|
|
118
|
+ },
|
|
119
|
+ {
|
|
120
|
+ text: 'Twitter',
|
|
121
|
+ href: 'https://twitter.com/vuetifyjs',
|
|
122
|
+ },
|
|
123
|
+ {
|
|
124
|
+ text: 'Articles',
|
|
125
|
+ href: 'https://medium.com/vuetify',
|
|
126
|
+ },
|
|
127
|
+ ],
|
|
128
|
+ whatsNext: [
|
|
129
|
+ {
|
|
130
|
+ text: 'Explore components',
|
|
131
|
+ href: 'https://vuetifyjs.com/components/api-explorer',
|
|
132
|
+ },
|
|
133
|
+ {
|
|
134
|
+ text: 'Select a layout',
|
|
135
|
+ href: 'https://vuetifyjs.com/layout/pre-defined',
|
|
136
|
+ },
|
|
137
|
+ {
|
|
138
|
+ text: 'Frequently Asked Questions',
|
|
139
|
+ href: 'https://vuetifyjs.com/getting-started/frequently-asked-questions',
|
|
140
|
+ },
|
|
141
|
+ ],
|
|
142
|
+ }),
|
|
143
|
+};
|
|
144
|
+</script>
|