perf: template literals

This commit is contained in:
liyasthomas
2021-09-18 16:09:58 +05:30
parent 4236d1179c
commit e1e763575d
64 changed files with 425 additions and 333 deletions

View File

@@ -35,8 +35,10 @@
svg="edit"
:label="$t('action.edit')"
@click.native="
$emit('edit-team')
$refs.options.tippy().hide()
() => {
$emit('edit-team')
$refs.options.tippy().hide()
}
"
/>
<SmartItem
@@ -45,8 +47,10 @@
color="red"
:label="$t('action.delete')"
@click.native="
deleteTeam()
$refs.options.tippy().hide()
() => {
deleteTeam()
$refs.options.tippy().hide()
}
"
/>
<SmartItem
@@ -54,8 +58,10 @@
svg="trash"
:label="$t('team.exit')"
@click.native="
exitTeam()
$refs.options.tippy().hide()
() => {
exitTeam()
$refs.options.tippy().hide()
}
"
/>
</tippy>