mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2025-04-29 22:34:07 +02:00

Fixes the problem of the vue components directory not existing. Also removed the demo components that were not meant to be committed. Signed-off-by: Tucker McKnight <tucker.mcknight@gmail.com>
22 lines
373 B
Vue
22 lines
373 B
Vue
<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"
|
|
title="<?php p($l->t('Open website')) ?>"
|
|
news-stop-propagation>
|
|
</a>
|
|
</li>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
props: ['ctrl', 'item'],
|
|
};
|
|
</script>
|
|
|
|
|