added pipeline action menu

This commit is contained in:
ori agranat
2019-10-02 00:14:37 +03:00
parent c0d10e7282
commit 48d327fddf
6 changed files with 87 additions and 14 deletions

View File

@@ -0,0 +1,31 @@
<template>
<div>
<v-tooltip :right="right" :bottom="!right" nudge-right="10">
<template v-slot:activator="{ on }">
<v-icon @click="handleClick" v-on="on" :color="color">{{text}}</v-icon>
</template>
<span>{{tooltip}}</span>
</v-tooltip>
</div>
</template>
<script>
export default {
name: 'Icon',
props:['color','tooltip','text','right'],
data() {
return {
}
},
methods:{
handleClick(){
this.$emit('click');
}
}
}
</script>
<style lang="" scoped>
</style>

View File

@@ -1,7 +1,7 @@
<template>
<div>
<v-row align="center">
<v-col :cols="2">
<v-col :cols="3">
<span>{{name}}</span>
</v-col>
<v-col :cols="9">