Add applications page
This commit is contained in:
parent
a1d0bca6cf
commit
fb2c47cad9
17 changed files with 292 additions and 105 deletions
src
39
src/App.vue
39
src/App.vue
|
@ -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>
|
||||
|
|
Reference in a new issue