forked from ccsens_fe/tall-mui-3
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.
23 lines
352 B
23 lines
352 B
<template>
|
|
<div class="task-title">{{ plugin.name }}</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'TaskTitle',
|
|
props: { item: { type: Object, default: null } },
|
|
data() {
|
|
return {
|
|
plugin: {
|
|
name: '任务名',
|
|
id: '1',
|
|
},
|
|
};
|
|
},
|
|
computed: {},
|
|
methods: {},
|
|
watch: {},
|
|
};
|
|
</script>
|
|
|
|
<style></style>
|
|
|