mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-16 22:22:49 +00:00
24 lines
402 B
Vue
24 lines
402 B
Vue
<template>
|
|
<div>
|
|
<p>{{$L("任务待领取")}}</p>
|
|
<p> </p>
|
|
|
|
<p v-for="item in msg.list">
|
|
<span class="mention task" :data-id="item.id">#{{item.name}}</span>
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
export default {
|
|
props: {
|
|
msg: Object,
|
|
},
|
|
data() {
|
|
return {};
|
|
},
|
|
computed: {},
|
|
methods: {},
|
|
}
|
|
</script>
|