Skip to content
This repository was archived by the owner on Jan 1, 2025. It is now read-only.

vuepress-next init #35

Merged
merged 3 commits into from
Aug 14, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
vuepress-next init
  • Loading branch information
dgknca committed Aug 14, 2021
commit df6ceb33c607812d01c6d7d81f55d47fe264edf1
1 change: 0 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ yarn-debug.log*
yarn-error.log*
.travis.yml
*.map
dist/demo.html

.idea
.vscode
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# vue3-tree
# vue3-tree

`yarn add vue3-tree`
12 changes: 0 additions & 12 deletions docs/.gitignore

This file was deleted.

Binary file added docs/.vuepress/.cache/default-development/0.pack
Binary file not shown.
Binary file added docs/.vuepress/.cache/default-development/1.pack
Binary file not shown.
Binary file not shown.
Binary file added docs/.vuepress/.cache/default-development/3.pack
Binary file not shown.
Binary file not shown.
Binary file not shown.
9 changes: 9 additions & 0 deletions docs/.vuepress/.temp/internal/clientAppEnhances.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import clientAppEnhance0 from 'C:/Users/dgknc/Masaüstü/vue3-tree/docs/node_modules/@vuepress/theme-default/lib/client/clientAppEnhance.js'
import clientAppEnhance1 from 'C:/Users/dgknc/Masaüstü/vue3-tree/docs/node_modules/@vuepress/plugin-medium-zoom/lib/client/clientAppEnhance.js'
import clientAppEnhance2 from 'C:/Users/dgknc/Masaüstü/vue3-tree/docs/node_modules/@vuepress/plugin-theme-data/lib/client/clientAppEnhance.js'

export const clientAppEnhances = [
clientAppEnhance0,
clientAppEnhance1,
clientAppEnhance2,
]
5 changes: 5 additions & 0 deletions docs/.vuepress/.temp/internal/clientAppRootComponents.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import clientAppRootComponent0 from 'C:/Users/dgknc/Masaüstü/vue3-tree/docs/node_modules/@vuepress/plugin-back-to-top/lib/client/components/BackToTop.js'

export const clientAppRootComponents = [
clientAppRootComponent0,
]
9 changes: 9 additions & 0 deletions docs/.vuepress/.temp/internal/clientAppSetups.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import clientAppSetup0 from 'C:/Users/dgknc/Masaüstü/vue3-tree/docs/node_modules/@vuepress/theme-default/lib/client/clientAppSetup.js'
import clientAppSetup1 from 'C:/Users/dgknc/Masaüstü/vue3-tree/docs/node_modules/@vuepress/plugin-active-header-links/lib/client/clientAppSetup.js'
import clientAppSetup2 from 'C:/Users/dgknc/Masaüstü/vue3-tree/docs/node_modules/@vuepress/plugin-nprogress/lib/client/clientAppSetup.js'

export const clientAppSetups = [
clientAppSetup0,
clientAppSetup1,
clientAppSetup2,
]
6 changes: 6 additions & 0 deletions docs/.vuepress/.temp/internal/layoutComponents.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { defineAsyncComponent } from 'vue'

export const layoutComponents = {
"404": defineAsyncComponent(() => import("C:/Users/dgknc/Masaüstü/vue3-tree/docs/node_modules/@vuepress/theme-default/lib/client/layouts/404.vue")),
"Layout": defineAsyncComponent(() => import("C:/Users/dgknc/Masaüstü/vue3-tree/docs/node_modules/@vuepress/theme-default/lib/client/layouts/Layout.vue")),
}
8 changes: 8 additions & 0 deletions docs/.vuepress/.temp/internal/pagesComponents.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { defineAsyncComponent } from 'vue'

export const pagesComponents = {
// path: /404.html
"v-3706649a": defineAsyncComponent(() => import(/* webpackChunkName: "v-3706649a" */"C:/Users/dgknc/Masaüstü/vue3-tree/docs/.vuepress/.temp/pages/404.html.vue")),
// path: /
"v-8daa1a0e": defineAsyncComponent(() => import(/* webpackChunkName: "v-8daa1a0e" */"C:/Users/dgknc/Masaüstü/vue3-tree/docs/.vuepress/.temp/pages/index.html.vue")),
}
6 changes: 6 additions & 0 deletions docs/.vuepress/.temp/internal/pagesData.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export const pagesData = {
// path: /404.html
"v-3706649a": () => import(/* webpackChunkName: "v-3706649a" */"C:/Users/dgknc/Masaüstü/vue3-tree/docs/.vuepress/.temp/pages/404.html.js").then(({ data }) => data),
// path: /
"v-8daa1a0e": () => import(/* webpackChunkName: "v-8daa1a0e" */"C:/Users/dgknc/Masaüstü/vue3-tree/docs/.vuepress/.temp/pages/index.html.js").then(({ data }) => data),
}
31 changes: 31 additions & 0 deletions docs/.vuepress/.temp/internal/pagesRoutes.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import { Vuepress } from '@vuepress/client/lib/components/Vuepress'

const routeItems = [
["v-3706649a","/404.html","",["/404"]],
["v-8daa1a0e","/","deneme",["/index.html","/README.md"]],
]

export const pagesRoutes = routeItems.reduce(
(result, [name, path, title, redirects]) => {
result.push(
{
name,
path,
component: Vuepress,
meta: { title },
},
...redirects.map((item) => ({
path: item,
redirect: path,
}))
)
return result
},
[
{
name: "404",
path: "/:catchAll(.*)",
component: Vuepress,
}
]
)
21 changes: 21 additions & 0 deletions docs/.vuepress/.temp/internal/siteData.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
export const siteData = {
"base": "/",
"lang": "en-US",
"title": "",
"description": "",
"head": [],
"locales": {}
}

if (import.meta.webpackHot) {
import.meta.webpackHot.accept()
if (__VUE_HMR_RUNTIME__.updateSiteData) {
__VUE_HMR_RUNTIME__.updateSiteData(siteData)
}
}

if (import.meta.hot) {
import.meta.hot.accept(({ siteData }) => {
__VUE_HMR_RUNTIME__.updateSiteData(siteData)
})
}
44 changes: 44 additions & 0 deletions docs/.vuepress/.temp/internal/themeData.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
export const themeData = {
"locales": {
"/": {
"selectLanguageName": "English"
}
},
"navbar": [],
"logo": null,
"darkMode": true,
"repo": null,
"selectLanguageText": "Languages",
"selectLanguageAriaLabel": "Select language",
"sidebar": "auto",
"sidebarDepth": 2,
"editLink": true,
"editLinkText": "Edit this page",
"lastUpdated": true,
"lastUpdatedText": "Last Updated",
"contributors": true,
"contributorsText": "Contributors",
"notFound": [
"There's nothing here.",
"How did we get here?",
"That's a Four-Oh-Four.",
"Looks like we've got some broken links."
],
"backToHome": "Take me home",
"openInNewWindow": "open in new window",
"toggleDarkMode": "toggle dark mode",
"toggleSidebar": "toggle sidebar"
}

if (import.meta.webpackHot) {
import.meta.webpackHot.accept()
if (__VUE_HMR_RUNTIME__.updateThemeData) {
__VUE_HMR_RUNTIME__.updateThemeData(themeData)
}
}

if (import.meta.hot) {
import.meta.hot.accept(({ themeData }) => {
__VUE_HMR_RUNTIME__.updateThemeData(themeData)
})
}
26 changes: 26 additions & 0 deletions docs/.vuepress/.temp/pages/404.html.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
export const data = {
"key": "v-3706649a",
"path": "/404.html",
"title": "",
"lang": "en-US",
"frontmatter": {
"layout": "404"
},
"excerpt": "",
"headers": [],
"filePathRelative": null,
"git": {}
}

if (import.meta.webpackHot) {
import.meta.webpackHot.accept()
if (__VUE_HMR_RUNTIME__.updatePageData) {
__VUE_HMR_RUNTIME__.updatePageData(data)
}
}

if (import.meta.hot) {
import.meta.hot.accept(({ data }) => {
__VUE_HMR_RUNTIME__.updatePageData(data)
})
}
1 change: 1 addition & 0 deletions docs/.vuepress/.temp/pages/404.html.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<template></template>
24 changes: 24 additions & 0 deletions docs/.vuepress/.temp/pages/index.html.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
export const data = {
"key": "v-8daa1a0e",
"path": "/",
"title": "deneme",
"lang": "en-US",
"frontmatter": {},
"excerpt": "",
"headers": [],
"filePathRelative": "README.md",
"git": {}
}

if (import.meta.webpackHot) {
import.meta.webpackHot.accept()
if (__VUE_HMR_RUNTIME__.updatePageData) {
__VUE_HMR_RUNTIME__.updatePageData(data)
}
}

if (import.meta.hot) {
import.meta.hot.accept(({ data }) => {
__VUE_HMR_RUNTIME__.updatePageData(data)
})
}
2 changes: 2 additions & 0 deletions docs/.vuepress/.temp/pages/index.html.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<template><h1 id="deneme" tabindex="-1"><a class="header-anchor" href="#deneme" aria-hidden="true">#</a> deneme</h1>
</template>
Empty file.
Empty file.
1 change: 1 addition & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# deneme
19 changes: 7 additions & 12 deletions docs/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,14 @@
{
"name": "vue3-tree",
"version": "0.0.2",
"description": "",
"main": "index.js",
"authors": {
"name": "seo.do",
"email": ""
},
"repository": "/vue3-tree",
"name": "vue3-tree-docs",
"version": "0.0.1",
"scripts": {
"dev": "vuepress dev src",
"build": "vuepress build src"
"dev": "vuepress dev",
"build": "vuepress build"
},
"main": "index.js",
"license": "MIT",
"private": false,
"devDependencies": {
"vuepress": "^1.5.3"
"vuepress": "^2.0.0-beta.24"
}
}
15 changes: 0 additions & 15 deletions docs/src/.vuepress/components/Foo/Bar.vue

This file was deleted.

3 changes: 0 additions & 3 deletions docs/src/.vuepress/components/OtherComponent.vue

This file was deleted.

19 changes: 0 additions & 19 deletions docs/src/.vuepress/components/Shared/Footer.vue

This file was deleted.

15 changes: 0 additions & 15 deletions docs/src/.vuepress/components/demo-component.vue

This file was deleted.

71 changes: 0 additions & 71 deletions docs/src/.vuepress/config.js

This file was deleted.

Loading