aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/react/test/fixtures/react-component/src/components/Goodbye.vue
blob: 430dfdb711ba1c3b8d3fe50dc55ebe634dd8742f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<template>
  <h2 id="vue-h2">Hasta la vista, {{ name }}</h2>
</template>

<script>
export default {
  props: {
    name: String,
  },
};
</script>