This repository has been archived on 2025-10-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
rebuilding-uis/src/App.vue

51 lines
964 B
Vue
Raw Normal View History

2018-12-21 18:16:43 +00:00
<template>
<div id="app">
2018-12-21 23:58:35 +00:00
<environments :project="projects[0]"></environments>
2018-12-21 18:16:43 +00:00
</div>
</template>
<script>
2018-12-21 23:58:35 +00:00
import Environments from './components/Environments'
2018-12-21 18:16:43 +00:00
export default {
components: {
2018-12-21 21:58:12 +00:00
Environments
2018-12-21 23:58:35 +00:00
},
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'
},
},
},
],
}
2018-12-21 18:16:43 +00:00
}
}
</script>
<style>
2018-12-21 21:58:12 +00:00
@tailwind preflight;
@tailwind components;
@tailwind utilities;
2018-12-21 18:16:43 +00:00
</style>