This commit is contained in:
Viet An
2026-06-26 14:47:49 +07:00
parent 1262dc6d82
commit 6ff4112d66
96 changed files with 348 additions and 2936 deletions

View File

@@ -42,14 +42,23 @@
class="mr-3"
@click="add()"
>
<SvgIcon v-bind="{ name: 'add1.png', type: 'primary', size: 20 }"></SvgIcon>
<Icon
name="material-symbols:add-rounded"
:size="20"
/>
</a>
<a @click="remove(v, i)">
<SvgIcon v-bind="{ name: 'bin1.svg', type: 'danger', size: 20 }"></SvgIcon>
<Icon
name="material-symbols:delete-outline-rounded"
:size="20"
/>
</a>
<p class="mt-2">
<a @click="copyContent(v.text)">
<SvgIcon v-bind="{ name: 'copy.svg', type: 'primary', size: 22 }"></SvgIcon>
<Icon
name="material-symbols:content-copy-outline-rounded"
:size="20"
/>
</a>
</p>
</div>
@@ -126,23 +135,35 @@
class="mr-3"
@click="copyContent(v.link)"
>
<SvgIcon v-bind="{ name: 'copy.svg', type: 'primary', size: 20 }"></SvgIcon>
<Icon
name="material-symbols:content-copy-outline-rounded"
:size="20"
/>
</a>
<a
class="mr-3"
:href="v.link"
target="_blank"
>
<SvgIcon v-bind="{ name: 'open.svg', type: 'primary', size: 20 }"></SvgIcon>
<Icon
name="mdi:launch"
:size="20"
/>
</a>
<a
class="mr-3"
@click="addLink()"
>
<SvgIcon v-bind="{ name: 'add1.png', type: 'primary', size: 18 }"></SvgIcon>
<Icon
name="material-symbols:add-rounded"
:size="20"
/>
</a>
<a @click="removeLink(v, i)">
<SvgIcon v-bind="{ name: 'bin1.svg', type: 'danger', size: 18 }"></SvgIcon>
<Icon
name="material-symbols:delete-outline-rounded"
:size="20"
/>
</a>
</div>
</div>
@@ -166,7 +187,10 @@
>
<span class="mr-3">{{ v.text }}</span>
<a @click="copyContent(v.text)">
<SvgIcon v-bind="{ name: 'copy.svg', type: 'primary', size: 20 }"></SvgIcon>
<Icon
name="material-symbols:content-copy-outline-rounded"
:size="20"
/>
</a>
</div>
</div>
@@ -208,7 +232,10 @@
>{{ v.link }}</a
>
<a @click="copyContent(v.link)">
<SvgIcon v-bind="{ name: 'copy.svg', type: 'primary', size: 20 }"></SvgIcon>
<Icon
name="material-symbols:content-copy-outline-rounded"
:size="20"
/>
</a>
</div>
</template>