Skip to content

Commit a843ed9

Browse files
Organizing docs
1 parent 9fc4618 commit a843ed9

18 files changed

+50
-38
lines changed

index.html

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,25 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Vite + Vue + TS</title>
8-
</head>
9-
<body>
10-
<div id="app"></div>
11-
<script type="module" src="/src/main.ts"></script>
12-
</body>
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<link rel="icon" type="image/svg+xml" href="/vuetify-logo.svg" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8+
<title>Vuetify Inline Fields</title>
9+
10+
<meta name="description"
11+
content="" />
12+
<meta name="keywords"
13+
content="" />
14+
<meta name="author" content="WebDevNerdStuff & Bunnies... lots and lots of bunnies!" />
15+
<meta name="robots" content="index, follow" />
16+
<meta name="googlebot" content="index, follow" />
17+
<meta name="theme-color" content="#0d47a1" />
18+
</head>
19+
20+
<body>
21+
<div id="app"></div>
22+
<script type="module" src="/src/main.ts"></script>
23+
</body>
24+
1325
</html>

src/App.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626

2727
<script setup>
2828
import { provide, ref } from 'vue';
29-
import AppBar from './layout/AppBar.vue';
30-
import MenuComponent from './components/MenuComponent.vue';
31-
import DocsComponent from './components/DocsComponent.vue';
29+
import AppBar from './documentation/layout/AppBar.vue';
30+
import MenuComponent from './documentation/MenuComponent.vue';
31+
import DocsComponent from './documentation/DocsComponent.vue';
3232
import { useCoreStore } from './stores/index';
3333
3434

src/components/docs/index.ts

Lines changed: 0 additions & 23 deletions
This file was deleted.

src/components/DocsComponent.vue renamed to src/documentation/DocsComponent.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ import {
112112
SassVariables,
113113
SlotsComponent,
114114
UsageComponent,
115-
} from '@/components/docs';
115+
} from '@/documentation/sections';
116116
117117
const links = inject('links');
118118
File renamed without changes.

src/documentation/sections/index.ts

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import DependenciesComponent from './DependenciesComponent.vue';
2+
import DescriptionComponent from './DescriptionComponent.vue';
3+
import EventsComponent from './EventsComponent.vue';
4+
import ExampleComponent from './ExampleComponent.vue';
5+
import LegalComponent from './LegalComponent.vue';
6+
import LicenseComponent from './LicenseComponent.vue';
7+
import PropsComponent from './PropsComponent.vue';
8+
import SassVariables from './SassVariables.vue';
9+
import SlotsComponent from './SlotsComponent.vue';
10+
import UsageComponent from './UsageComponent.vue';
11+
12+
export {
13+
DependenciesComponent,
14+
DescriptionComponent,
15+
EventsComponent,
16+
ExampleComponent,
17+
LegalComponent,
18+
LicenseComponent,
19+
PropsComponent,
20+
SassVariables,
21+
SlotsComponent,
22+
UsageComponent,
23+
};

src/playground/configs/PlaygroundApp.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
import { provide } from 'vue';
3535
import { useCoreStore } from '@/stores/index';
3636
import PlaygroundPage from '@/playground/PlaygroundPage.vue';
37-
import AppBar from '@/layout/AppBar.vue';
37+
import AppBar from '@/documentation/layout/AppBar.vue';
3838
3939
const store = useCoreStore();
4040
provide('links', store.links);

0 commit comments

Comments
 (0)