tall小程序和时间轴结合在小程序中
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

26 lines
405 B

<template>
<div class="task-title">{{ item.name }}</div>
</template>
<script>
export default {
name: 'TaskTitle',
props: { item: { type: Object, default: null } },
data() {
return {
plugin: {
name: '任务名',
id: '1',
},
};
},
mounted() {
console.log('item', this.item);
},
computed: {},
methods: {},
watch: {},
};
</script>
<style></style>