mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-17 06:32:51 +00:00
24 lines
392 B
Vue
24 lines
392 B
Vue
<template>
|
|
<div>
|
|
<p>任务待领取</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>
|