mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 11:19:56 +00:00
17 lines
214 B
Vue
17 lines
214 B
Vue
<template>
|
|
<div>
|
|
{{$L(msg.desc)}}
|
|
</div>
|
|
</template>
|
|
<script lang="ts">
|
|
export default {
|
|
props: {
|
|
msg: Object,
|
|
},
|
|
data() {
|
|
return {};
|
|
},
|
|
methods: {},
|
|
}
|
|
</script>
|