This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/2021-07-30_composition-01-s.../src/components/UserData.vue

18 lines
262 B
Vue

<template>
<h2>{{ userName }}</h2>
<h3>{{ age }}</h3>
</template>
<script>
export default {
props: ['firstName', 'lastName', 'age'],
computed: {
userName() {
return this.firstName + ' ' + this.lastName;
}
}
};
</script>
<style></style>