mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-17 22:51:24 +08:00
23 lines
404 B
Vue
23 lines
404 B
Vue
|
<template>
|
||
|
<div v-if="params.data.linked_tasks > 0"
|
||
|
@click.stop="params.dtComponent.$emit('linked_my_modules', {}, [params.data])"
|
||
|
class="cursor-pointer text-sn-blue"
|
||
|
>
|
||
|
{{ params.data.linked_tasks }}
|
||
|
</div>
|
||
|
<div v-else>
|
||
|
0
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'LinkedMyModulesRenderer',
|
||
|
props: {
|
||
|
params: {
|
||
|
required: true
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
</script>
|