summaryrefslogtreecommitdiffstats
path: root/js/vue_components/IconLinkCompact.vue
diff options
context:
space:
mode:
authorBenjamin Brahmer <info@b-brahmer.de>2021-08-21 10:14:45 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2021-09-02 11:32:44 +0200
commit1f8880c8dec2863cf9d14af4e62b6b5f527cbeb3 (patch)
tree2c47cc4c58e060e70841fff8af9c1b7d6809a862 /js/vue_components/IconLinkCompact.vue
parent1be66add82c48767df741cc65c1178002af09963 (diff)
Revert Add Vue and ng-vue packages
Diffstat (limited to 'js/vue_components/IconLinkCompact.vue')
-rw-r--r--js/vue_components/IconLinkCompact.vue21
1 files changed, 0 insertions, 21 deletions
diff --git a/js/vue_components/IconLinkCompact.vue b/js/vue_components/IconLinkCompact.vue
deleted file mode 100644
index 1691c49b8..000000000
--- a/js/vue_components/IconLinkCompact.vue
+++ /dev/null
@@ -1,21 +0,0 @@
-<template>
- <li class="util only-in-compact">
- <a class="external icon-link"
- v-on:click="ctrl.markRead(item.id)"
- target="_blank"
- rel="noreferrer"
- v-bind:href="item.url"
- v-bind:title="t('news', 'Open website')"
- news-stop-propagation>
- </a>
- </li>
-</template>
-
-<script>
-
-export default {
- props: ['ctrl', 'item', 't'],
-};
-</script>
-
-