aboutsummaryrefslogtreecommitdiff
path: root/client/src/components/ExampleComponent.vue
blob: 5e207f91c802a3af119c9b561f0faee23c81c5b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<template>
  <div>
    <p v-text="msg"></p>
  </div>
</template>

<script>
export default {
  name: 'ExampleComponent',
  props: {
    msg: String
  }
}
</script>