Make icons into vue components
This commit is contained in:
parent
a97211afdf
commit
110394a40a
26 changed files with 209 additions and 91 deletions
|
|
@ -7,7 +7,7 @@
|
|||
>
|
||||
<div v-if="timeout == -1" class="dialog-content text-center">
|
||||
<template>
|
||||
<v-img contain height="28" src="@/assets/icons/trash_black.svg" />
|
||||
<v-icon size="28">$vuetify.icons.trash_black</v-icon>
|
||||
<h2 class="dialog-title">{{ $t("purge_room.title") }}</h2>
|
||||
<div class="dialog-text">
|
||||
{{ $t("purge_room.info") }}
|
||||
|
|
@ -49,12 +49,9 @@
|
|||
<!-- Timer -->
|
||||
<div v-if="timeout >= 0 && !isPurging" class="dialog-content text-center">
|
||||
<template>
|
||||
<v-img
|
||||
contain
|
||||
width="20"
|
||||
class="d-inline-block me-2"
|
||||
src="@/assets/icons/timer.svg"
|
||||
/>{{ $t("purge_room.n_seconds", { seconds: timeout }) }}
|
||||
<v-icon size="20"
|
||||
class="d-inline-block me-2">$vuetify.icons.timer</v-icon>
|
||||
{{ $t("purge_room.n_seconds", { seconds: timeout }) }}
|
||||
<h2 class="dialog-title mb-0">{{ $t("purge_room.self_destruct") }}</h2>
|
||||
<div class="dialog-text text-center mb-5">
|
||||
{{ $t("purge_room.notified") }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue