Add applications page

This commit is contained in:
Oliver Davies 2018-12-23 13:17:39 +00:00
parent a1d0bca6cf
commit fb2c47cad9
17 changed files with 292 additions and 105 deletions

View file

@ -1,46 +1,11 @@
<template>
<div id="app">
<environments :project="projects[0]"></environments>
<router-view></router-view>
</div>
</template>
<script>
import Environments from './components/Environments'
export default {
components: {
Environments
},
data() {
return {
projects: [
{
name: 'Rebuilding Acquia',
type: 'Drupal',
level: 'Enterprise',
environments: {
dev: {
name: 'Dev',
url: 'dev.rebuilding-acquia.com',
label: 'develop'
},
stage: {
name: 'Stage',
url: 'stg.rebuilding-acquia.com',
label: 'master'
},
prod: {
name: 'Prod',
url: 'rebuilding-acquia.com',
label: 'tags/2018-12-21'
},
},
},
],
}
}
}
export default {}
</script>
<style>