From 283459857f55cd040eee0bf58f14f58a4cd34f12 Mon Sep 17 00:00:00 2001 From: Victor A Date: Mon, 23 Sep 2024 19:11:19 +0200 Subject: [PATCH] Add JobApplication form comp. --- vuepress-plugin-hello/JobApplication.vue | 193 +++++++++++++++++++++++ vuepress-plugin-hello/client.js | 3 +- 2 files changed, 195 insertions(+), 1 deletion(-) create mode 100644 vuepress-plugin-hello/JobApplication.vue diff --git a/vuepress-plugin-hello/JobApplication.vue b/vuepress-plugin-hello/JobApplication.vue new file mode 100644 index 00000000..09e21747 --- /dev/null +++ b/vuepress-plugin-hello/JobApplication.vue @@ -0,0 +1,193 @@ + + + + + \ No newline at end of file diff --git a/vuepress-plugin-hello/client.js b/vuepress-plugin-hello/client.js index 74e20ae3..0ae301c6 100644 --- a/vuepress-plugin-hello/client.js +++ b/vuepress-plugin-hello/client.js @@ -1,9 +1,10 @@ import { defineClientConfig } from 'vuepress/client' import MyComponent from './MyComponent.vue' +import JobApplication from './JobApplication.vue' export default defineClientConfig({ enhance({ app }) { app.component('MyComponent', MyComponent); - + app.component('JobApplication', JobApplication); }, }) \ No newline at end of file