agola-web/src/components/projectvars.vue
Simone Gotti 395f8454a0 Initial display of project settings
Show project variables
2019-03-22 08:39:03 +01:00

30 lines
553 B
Vue

<template>
<div>
<h4 class="title is-4">Project variables</h4>
<vars :variables="variables"/>
<hr>
<h4 class="title is-4">All project variables</h4>
<vars :variables="allvariables" :showparentpath="true"/>
</div>
</template>
<script>
import { apiurl, fetch } from "@/util/auth";
import vars from "@/components/vars";
export default {
components: { vars },
name: "projectvars",
props: {
variables: Array,
allvariables: Array
}
};
</script>
<style scoped lang="scss">
@import "@/css/_variables.scss";
</style>