Add team option in bulk actions (#5885)

This commit is contained in:
Fayaz Ahmed
2022-11-18 14:44:36 +05:30
committed by GitHub
parent 47676c3cce
commit 33aacb3401
9 changed files with 287 additions and 20 deletions

View File

@@ -0,0 +1,15 @@
export default {
props: {
trianglePosition: {
type: String,
default: '0',
},
},
computed: {
cssVars() {
return {
'--triangle-position': this.trianglePosition + 'rem',
};
},
},
};