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.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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:

{
      path: '/NAME',
      name: 'NAME',
      component: () => import(/* webpackChunkName: "name" */ './views/NAME.vue')
}
  1. Insert the created route into router.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')
    }
  ]
})
  1. Edit src/views/NAME/data.json as you wish

  2. npm install && npm run serve and open your browser to: http://localhost:8080/. Move around with keyboard's arrows.

About

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.


Languages

Language:Vue 69.4%Language:JavaScript 18.6%Language:HTML 8.9%Language:Makefile 3.0%