mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 03:27:52 +00:00
16 lines
235 B
JavaScript
16 lines
235 B
JavaScript
export default {
|
|
props: {
|
|
trianglePosition: {
|
|
type: String,
|
|
default: '0',
|
|
},
|
|
},
|
|
computed: {
|
|
cssVars() {
|
|
return {
|
|
'--triangle-position': this.trianglePosition + 'rem',
|
|
};
|
|
},
|
|
},
|
|
};
|