2019-03-22 07:39:03 +00:00
|
|
|
<template>
|
|
|
|
|
<div>
|
2019-05-13 14:30:51 +00:00
|
|
|
<h5 class="title is-5">Local variables</h5>
|
|
|
|
|
<vars v-if="allvariables.length" :variables="variables"/>
|
|
|
|
|
<span v-else>No variables</span>
|
2019-03-22 07:39:03 +00:00
|
|
|
|
|
|
|
|
<hr>
|
2019-05-13 14:30:51 +00:00
|
|
|
<h5 class="title is-5">All variables</h5>
|
|
|
|
|
<vars v-if="allvariables.length" :variables="allvariables" :showparentpath="true"/>
|
|
|
|
|
<span v-else>No variables</span>
|
2019-03-22 07:39:03 +00:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
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>
|
|
|
|
|
|