diff --git a/src/components/BaseCheckbox.vue b/src/components/BaseCheckbox.vue new file mode 100644 index 0000000..d9006df --- /dev/null +++ b/src/components/BaseCheckbox.vue @@ -0,0 +1,57 @@ + + diff --git a/src/components/index.js b/src/components/index.js index 2b22499..445f29a 100644 --- a/src/components/index.js +++ b/src/components/index.js @@ -1,5 +1,6 @@ import FormGroupInput from "./Inputs/formGroupInput.vue"; +import BaseCheckbox from "./BaseCheckbox.vue"; import BaseDropdown from "./BaseDropdown.vue"; import BaseTable from "./BaseTable.vue"; import BaseButton from "./BaseButton"; @@ -15,6 +16,7 @@ export { Card, StatsCard, BaseTable, + BaseCheckbox, BaseDropdown, BaseButton, BaseAlert, diff --git a/src/pages/Dashboard.vue b/src/pages/Dashboard.vue index 7ed858c..f55d4bb 100644 --- a/src/pages/Dashboard.vue +++ b/src/pages/Dashboard.vue @@ -62,11 +62,11 @@

3,500€

- +
@@ -90,8 +90,8 @@
-
-
+ + +
+
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-

Update the Documentation

-

Dwuamish Head, Seattle, WA 8:47 AM

-
- -
-
- -
-
-

GDPR Compliance

-

The GDPR is a regulation that requires businesses to protect the personal data - and privacy of Europe citizens for transactions that occur within EU member states.

-
- -
-
- -
-
-

Solve the issues

-

Fifty percent of all respondents said they would be more likely to shop at a - company

-
- -
-
- -
-
-

Release v2.0.0

-

Ra Ave SW, Seattle, WA 98116, SUA 11:19 AM

-
- -
-
- -
-
-

Export the processed files

-

The report also shows that consumers will not easily forgive a company once a - breach exposing their personal data occurs.

-
- -
-
- -
-
-

Arival at export process

-

Capitol Hill, Seattle, WA 12:34 AM

-
- -
-
-
-
+
@@ -251,122 +117,7 @@
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Name - - Country - - City - - Salary -
- Dakota Rice - - Niger - - Oud-Turnhout - - $36,738 -
- Minerva Hooper - - Curaçao - - Sinaai-Waas - - $23,789 -
- Sage Rodriguez - - Netherlands - - Baileux - - $56,142 -
- Philip Chaney - - Korea, South - - Overland Park - - $38,735 -
- Doris Greene - - Malawi - - Feldkirchen in Kärnten - - $63,542 -
- Mason Porter - - Chile - - Gloucester - - $78,615 -
- Jon Porter - - Portugal - - Gloucester - - $98,615 -
+
@@ -378,11 +129,15 @@ import LineChart from '@/components/Charts/LineChart'; import BarChart from '@/components/Charts/BarChart'; import * as chartConfigs from '@/components/Charts/config'; + import TaskList from './Dashboard/TaskList'; + import UserTable from './Dashboard/UserTable'; export default { components: { LineChart, - BarChart + BarChart, + TaskList, + UserTable }, data() { return { diff --git a/src/pages/Dashboard/TaskList.vue b/src/pages/Dashboard/TaskList.vue new file mode 100644 index 0000000..e553d85 --- /dev/null +++ b/src/pages/Dashboard/TaskList.vue @@ -0,0 +1,66 @@ + + + diff --git a/src/pages/Dashboard/UserTable.vue b/src/pages/Dashboard/UserTable.vue new file mode 100644 index 0000000..f32df01 --- /dev/null +++ b/src/pages/Dashboard/UserTable.vue @@ -0,0 +1,77 @@ + + + diff --git a/src/plugins/globalComponents.js b/src/plugins/globalComponents.js index fc15200..3ddcf8d 100644 --- a/src/plugins/globalComponents.js +++ b/src/plugins/globalComponents.js @@ -1,4 +1,4 @@ -import { FormGroupInput, Card, BaseDropdown, BaseButton } from "../components/index"; +import { FormGroupInput, Card, BaseDropdown, BaseButton, BaseCheckbox } from "../components/index"; /** * You can register global components here and use them as a plugin in your main Vue instance */ @@ -9,6 +9,7 @@ const GlobalComponents = { Vue.component(Card.name, Card); Vue.component(BaseDropdown.name, BaseDropdown); Vue.component(BaseButton.name, BaseButton); + Vue.component(BaseCheckbox.name, BaseCheckbox); } };