diff --git a/src/common-components/date-picker/date-picker-spec.js b/src/common-components/date-picker/date-picker-spec.js new file mode 100644 index 000000000..3d0843e10 --- /dev/null +++ b/src/common-components/date-picker/date-picker-spec.js @@ -0,0 +1 @@ +test.todo("some test to be written in the future"); diff --git a/src/common-components/date-picker/date-picker.vue b/src/common-components/date-picker/date-picker.vue new file mode 100644 index 000000000..28d433289 --- /dev/null +++ b/src/common-components/date-picker/date-picker.vue @@ -0,0 +1,459 @@ + + + + + diff --git a/src/router/index.js b/src/router/index.js index 4daa23613..b09df2a17 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -23,6 +23,7 @@ import { applicationConfig } from "../constants/application-config"; // Components import quote from "@/layouts/quote/quote.vue"; +import datePicker from "@/common-components/date-picker/date-picker.vue"; const routes = [ { @@ -30,6 +31,11 @@ const routes = [ name: "quote", component: quote, }, + { + path: "/date-picker", // This is a temporary route for testing. + name: "date-picker", + component: datePicker, + }, { path: "/", name: "root",