A collection of vue components to build an awesome tech radar.
https://douglaseggleton.github.io/vue-tech-radar/
<template>
<div id="app">
<radar></radar>
<radar-legend></radar-legend>
</div>
</template>
<script>
import RadarLegend from './RadarLegend.vue'
import Radar from './Radar.vue'
export default {
name: 'app',
components: {
RadarLegend,
Radar
}
}
</script>
- Create your own data - edit /src/data.js
- yarn install
- yarn start (Go to http://localhost:1234)