mirror of
https://github.com/symfony/recipes.git
synced 2026-09-20 19:46:52 +03:00
10 lines
129 B
Vue
10 lines
129 B
Vue
<template>
|
|
<div>Hello {{ name }}!</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
defineProps({
|
|
name: String
|
|
});
|
|
</script>
|