Skip to content

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.

Notifications You must be signed in to change notification settings

scaccogatto/vue-swot

Repository files navigation

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.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published