mirror of
https://github.com/lzh-1625/go_process_manager.git
synced 2025-10-09 18:00:27 +08:00
22 lines
279 B
Vue
22 lines
279 B
Vue
<!--
|
|
* @Component:
|
|
* @Maintainer: J.K. Yang
|
|
* @Description:
|
|
-->
|
|
<script setup lang="ts">
|
|
defineProps({
|
|
name: {
|
|
type: String,
|
|
default: "J.K. Yang",
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="">
|
|
{{ name }}
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss"></style>
|