Skip to content

Commit a0911a6

Browse files
authored
Add files via upload
0 parents  commit a0911a6

13 files changed

+12076
-0
lines changed

README.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# ayaz
2+
3+
## Project setup
4+
```
5+
npm install
6+
```
7+
8+
### Compiles and hot-reloads for development
9+
```
10+
npm run serve
11+
```
12+
13+
### Compiles and minifies for production
14+
```
15+
npm run build
16+
```
17+
18+
### Lints and fixes files
19+
```
20+
npm run lint
21+
```
22+
23+
### Customize configuration
24+
See [Configuration Reference](https://cli.vuejs.org/config/).

babel.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/app'
4+
]
5+
}

package-lock.json

+11,745
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"name": "ayaz",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": {
6+
"serve": "vue-cli-service serve",
7+
"build": "vue-cli-service build",
8+
"lint": "vue-cli-service lint"
9+
},
10+
"dependencies": {
11+
"core-js": "^2.6.5",
12+
"vue": "^2.6.10",
13+
"vuetify": "^2.1.0"
14+
},
15+
"devDependencies": {
16+
"@vue/cli-plugin-babel": "^3.12.0",
17+
"@vue/cli-plugin-eslint": "^3.12.0",
18+
"@vue/cli-service": "^3.12.0",
19+
"babel-eslint": "^10.0.1",
20+
"eslint": "^5.16.0",
21+
"eslint-plugin-vue": "^5.0.0",
22+
"sass": "^1.17.4",
23+
"sass-loader": "^7.1.0",
24+
"vue-cli-plugin-vuetify": "^1.0.1",
25+
"vue-template-compiler": "^2.6.10",
26+
"vuetify-loader": "^1.2.2"
27+
},
28+
"eslintConfig": {
29+
"root": true,
30+
"env": {
31+
"node": true
32+
},
33+
"extends": [
34+
"plugin:vue/essential",
35+
"eslint:recommended"
36+
],
37+
"rules": {},
38+
"parserOptions": {
39+
"parser": "babel-eslint"
40+
}
41+
},
42+
"postcss": {
43+
"plugins": {
44+
"autoprefixer": {}
45+
}
46+
},
47+
"browserslist": [
48+
"> 1%",
49+
"last 2 versions"
50+
]
51+
}

public/favicon.ico

4.19 KB
Binary file not shown.

public/index.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width,initial-scale=1.0">
7+
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
8+
<title>ayaz</title>
9+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900">
10+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@latest/css/materialdesignicons.min.css">
11+
</head>
12+
<body>
13+
<noscript>
14+
<strong>We're sorry but ayaz doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
15+
</noscript>
16+
<div id="app"></div>
17+
<!-- built files will be auto injected -->
18+
</body>
19+
</html>

src/App.vue

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
<template>
2+
<v-app id="inspire">
3+
<v-content>
4+
<v-container
5+
class="fill-height"
6+
fluid
7+
>
8+
<v-row
9+
align="center"
10+
justify="center"
11+
>
12+
<v-col
13+
cols="12"
14+
sm="8"
15+
md="4"
16+
>
17+
<v-card class="elevation-12">
18+
<v-toolbar
19+
color="primary"
20+
dark
21+
flat
22+
>https://github.com/graymonday
23+
24+
</v-toolbar>
25+
<v-card-text>
26+
<v-form>
27+
<v-text-field
28+
label="Login"
29+
name="login"
30+
31+
type="text"
32+
></v-text-field>
33+
34+
<v-text-field
35+
id="password"
36+
label="Password"
37+
name="password"
38+
39+
type="password"
40+
></v-text-field>
41+
</v-form>
42+
</v-card-text>
43+
<v-card-actions>
44+
<div class="flex-grow-1"></div>
45+
<v-btn color="primary">Login</v-btn>
46+
</v-card-actions>
47+
</v-card>
48+
</v-col>
49+
</v-row>
50+
</v-container>
51+
</v-content>
52+
</v-app>
53+
</template>
54+
55+
<script>
56+
export default {
57+
props: {
58+
source: String,
59+
},
60+
data: () => ({
61+
drawer: null,
62+
}),
63+
}
64+
</script>

src/assets/logo.png

6.69 KB
Loading

src/assets/logo.svg

+1
Loading

src/components/HelloWorld.vue

+142
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
1+
<template>
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>
85+
</template>
86+
87+
<script>
88+
export default {
89+
data: () => ({
90+
ecosystem: [
91+
{
92+
text: 'vuetify-loader',
93+
href: 'https://github.com/vuetifyjs/vuetify-loader',
94+
},
95+
{
96+
text: 'github',
97+
href: 'https://github.com/vuetifyjs/vuetify',
98+
},
99+
{
100+
text: 'awesome-vuetify',
101+
href: 'https://github.com/vuetifyjs/awesome-vuetify',
102+
},
103+
],
104+
importantLinks: [
105+
{
106+
text: 'Documentation',
107+
href: 'https://vuetifyjs.com',
108+
},
109+
{
110+
text: 'Chat',
111+
href: 'https://community.vuetifyjs.com',
112+
},
113+
{
114+
text: 'Made with Vuetify',
115+
href: 'https://madewithvuejs.com/vuetify',
116+
},
117+
{
118+
text: 'Twitter',
119+
href: 'https://twitter.com/vuetifyjs',
120+
},
121+
{
122+
text: 'Articles',
123+
href: 'https://medium.com/vuetify',
124+
},
125+
],
126+
whatsNext: [
127+
{
128+
text: 'Explore components',
129+
href: 'https://vuetifyjs.com/components/api-explorer',
130+
},
131+
{
132+
text: 'Select a layout',
133+
href: 'https://vuetifyjs.com/layout/pre-defined',
134+
},
135+
{
136+
text: 'Frequently Asked Questions',
137+
href: 'https://vuetifyjs.com/getting-started/frequently-asked-questions',
138+
},
139+
],
140+
}),
141+
};
142+
</script>

src/main.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import Vue from 'vue'
2+
import App from './App.vue'
3+
import vuetify from './plugins/vuetify';
4+
5+
Vue.config.productionTip = false
6+
7+
new Vue({
8+
vuetify,
9+
render: h => h(App)
10+
}).$mount('#app')

src/plugins/vuetify.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import Vue from 'vue';
2+
import Vuetify from 'vuetify/lib';
3+
4+
Vue.use(Vuetify);
5+
6+
export default new Vuetify({
7+
icons: {
8+
iconfont: 'mdi',
9+
},
10+
});

vue.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
"transpileDependencies": [
3+
"vuetify"
4+
]
5+
}

0 commit comments

Comments
 (0)