Skip to content
This repository was archived by the owner on Sep 11, 2020. It is now read-only.

[WIP] Adding Ecosystem Page #163

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
35 changes: 35 additions & 0 deletions src/components/doc/VuetifyEcosystemList.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<template>
<div>
<div>
<div
v-for="project in vuetifyEcosystemList"
:key="project.name"
>
<h2>
<a
:href="project.repo_url"
target="_blank"
>
{{ project.name }}
</a>
</h2>
<p>{{ project.description }}</p>
</div>
</div>
</div>
</template>
<style lang="stylus" scoped>

</style>

<script>
import * as ecosystemData from '@/data/ecosystem'
export default {
name: 'VuetifyEcosystemList',
data: () => ({ vuetifyEcosystemList: [] }),

mounted () {
this.vuetifyEcosystemList = ecosystemData.default
},
}
</script>
2 changes: 1 addition & 1 deletion src/components/menus/LanguageMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
:key="index"
class="v-list-item--default"
:to="{ params: { locale: item.alternate || item.locale } }"
@click="switchLocale(item.alternate || item.locale)"
replace
@click="switchLocale(item.alternate || item.locale)"
>
<v-list-item-title v-text="item.title" />
</v-list-item>
Expand Down
44 changes: 44 additions & 0 deletions src/data/ecosystem.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
[
{
"name": "@vuetify/cli-plugin-utils",
"repo_url": "https://github.com/vuetifyjs/vue-cli-plugins",
"description": "🔌 A collection of Vuetify plugins for Vue CLI"

},
{
"name": "eslint-config-vuetify",
"repo_url": "https://github.com/vuetifyjs/eslint-config-vuetify",
"description": "💼 Opinionated eslint config for Vuetify projects."

},
{
"name": "vue-cli-plugin-vuetify",
"repo_url": "https://github.com/vuetifyjs/vue-cli-plugins/tree/master/packages/vue-cli-plugin-vuetify",
"description": "A Vue CLI 3 Plugin for installing Vuetify"

},
{
"name": "@vuetify/material-studies",
"repo_url": "",
"description": "Pre-alpha"

},
{
"name": "@vuetify/preset",
"repo_url": "https://github.com/vuetifyjs/preset",
"description": "A Vue CLI Preset for generating pre-scaffolded Vuetify applications"

},
{
"name": "Awesome Vuetify",
"repo_url": "https://github.com/vuetifyjs/awesome-vuetify",
"description": "🎉 The best resources related to Vuetify"

},
{
"name": "vuetify-loader",
"repo_url": "https://github.com/vuetifyjs/vuetify-loader",
"description": "📦 A Webpack plugin for treeshaking Vuetify components and more."

}
]
3 changes: 2 additions & 1 deletion src/data/nav.json
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,8 @@
"items": [
"jobs-for-vue",
"made-with-vuetify",
"themes"
"themes",
"ecosystem"
]
}
]
37 changes: 37 additions & 0 deletions src/pages/en/resources/ecosystem.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
meta:
title: Vuetify ecosystem
description: A List of Vuetify projects in the Vuetify ecosystem.
keywords: Vue.js Jobs, Vue.js
related:
- /introduction/why-vuetify/
- /getting-started/installation/
- /introduction/roadmap/
nav: Ecosystem
---

# Ecosystem

<!-- ### Vuetify
[Github](https://github.com/vuetifyjs/vuetify)

🐉 Material Component Framework for Vue

### Vuetify Loader
[Github](https://github.com/vuetifyjs/vuetify-loader)

📦 A Webpack plugin for treeshaking Vuetify components and more

### Vue CLI Plugins
[Github](https://github.com/vuetifyjs/vue-cli-plugins)

🔌 A collection of Vuetify plugins for Vue CLI

### Vue CLI Plugins
[Github](https://github.com/vuetifyjs/vue-cli-plugins)

🔌 A collection of Vuetify plugins for Vue CLI -->

<vuetify-ecosystem-list />

<backmatter />