aboutsummaryrefslogtreecommitdiff
path: root/client/src/components/ExampleComponent.vue
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/components/ExampleComponent.vue')
-rw-r--r--client/src/components/ExampleComponent.vue14
1 files changed, 14 insertions, 0 deletions
diff --git a/client/src/components/ExampleComponent.vue b/client/src/components/ExampleComponent.vue
new file mode 100644
index 0000000..5e207f9
--- /dev/null
+++ b/client/src/components/ExampleComponent.vue
@@ -0,0 +1,14 @@
+<template>
+ <div>
+ <p v-text="msg"></p>
+ </div>
+</template>
+
+<script>
+export default {
+ name: 'ExampleComponent',
+ props: {
+ msg: String
+ }
+}
+</script>