Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scaccogatto/vue-swot
SWOT analysis (or SWOT matrix) is a strategic planning technique used to help a person or organization identify strengths, weaknesses, opportunities, and threats related to business competition or project planning.
https://github.com/scaccogatto/vue-swot
slides swot swot-analysis vue
Last synced: 27 days ago
JSON representation
SWOT analysis (or SWOT matrix) is a strategic planning technique used to help a person or organization identify strengths, weaknesses, opportunities, and threats related to business competition or project planning.
- Host: GitHub
- URL: https://github.com/scaccogatto/vue-swot
- Owner: scaccogatto
- Created: 2018-10-30T14:08:50.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-06T15:33:39.000Z (almost 6 years ago)
- Last Synced: 2024-10-19T07:11:26.742Z (3 months ago)
- Topics: slides, swot, swot-analysis, vue
- Language: Vue
- Homepage:
- Size: 318 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# swot
> https://en.wikipedia.org/wiki/SWOT_analysis
## Demo
https://scaccogatto.github.io/vue-swot/
## Create your SWOT
1. Create your swot slide `make swot NAME=Test`
2. Using the following script, create your route:
```js
{
path: '/NAME',
name: 'NAME',
component: () => import(/* webpackChunkName: "name" */ './views/NAME.vue')
}
```3. Insert the created route into `router.js`
```js
import Vue from 'vue'
import Router from 'vue-router'
import Home from './views/Home'Vue.use(Router)
export default new Router({
mode: 'history',
base: process.env.BASE_URL,
routes: [
{
path: '/',
name: 'home',
component: Home
},
{
path: '/base',
name: 'base',
component: () => import(/* webpackChunkName: "reparto-dev" */ './views/Base.vue')
},
{
path: '/NAME',
name: 'NAME',
component: () => import(/* webpackChunkName: "name" */ './views/NAME.vue')
}
]
})
```4. Edit `src/views/NAME/data.json` as you wish
5. `npm install && npm run serve` and open your browser to: `http://localhost:8080/`. Move around with keyboard's arrows.