From 6173f1ff3704da86f9f2179dee23e9faa1dd1aad Mon Sep 17 00:00:00 2001 From: Dragos Date: Mon, 11 Feb 2019 18:01:32 +0200 Subject: [PATCH] readme updated --- README.md | 244 +++++++++++++++++++++++++++--------------------------- 1 file changed, 122 insertions(+), 122 deletions(-) diff --git a/README.md b/README.md index a47dcdc..9486f09 100644 --- a/README.md +++ b/README.md @@ -77,135 +77,135 @@ Within the download you'll find the following directories and files: ``` vue-material-dashboard-pro/ +├── CHANGELOG.md ├── README.md +├── babel.config.js ├── package.json +├── postcss.config.js ├── public │   ├── img │   │   ├── faces │   │   └── flags │   └── index.html -├── src -│   ├── App.vue -│   ├── assets -│   │   ├── css -│   │   └── scss -│   │   ├── material-dashboard.scss -│   │   └── md -│   ├── components -│   │   ├── AnimatedNumber.vue -│   │   ├── Badge.vue -│   │   ├── Cards -│   │   │   ├── ChartCard.vue -│   │   │   ├── GlobalSalesCard.vue -│   │   │   ├── LockCard.vue -│   │   │   ├── LoginCard.vue -│   │   │   ├── NavTabsCard.vue -│   │   │   ├── PricingCard.vue -│   │   │   ├── ProductCard.vue -│   │   │   ├── SignupCard.vue -│   │   │   ├── StatsCard.vue -│   │   │   └── TestimonialCard.vue -│   │   ├── Collapse.vue -│   │   ├── Dropdown.vue -│   │   ├── Inputs -│   │   │   └── IconCheckbox.vue -│   │   ├── Modal.vue -│   │   ├── NotificationPlugin -│   │   │   ├── Notification.vue -│   │   │   ├── Notifications.vue -│   │   │   └── index.js -│   │   ├── Pagination.vue -│   │   ├── SidebarPlugin -│   │   │   ├── SideBar.vue -│   │   │   ├── SidebarItem.vue -│   │   │   └── index.js -│   │   ├── Slider.vue -│   │   ├── Tables -│   │   │   └── GlobalSalesTable.vue -│   │   ├── Tabs.vue -│   │   ├── Timeline -│   │   │   ├── TimeLine.vue -│   │   │   └── TimeLineItem.vue -│   │   ├── Wizard -│   │   │   ├── Wizard.vue -│   │   │   ├── WizardTab.vue -│   │   │   └── throttle.js -│   │   ├── WorldMap -│   │   │   ├── AsyncWorldMap.vue -│   │   │   ├── WorldMap.vue -│   │   │   └── world_map.js -│   │   └── index.js -│   ├── globalComponents.js -│   ├── globalDirectives.js -│   ├── main.js -│   ├── material-dashboard.js -│   ├── pages -│   │   ├── Dashboard -│   │   │   ├── Calendar.vue -│   │   │   ├── Charts.vue -│   │   │   ├── Components -│   │   │   │   ├── Buttons.vue -│   │   │   │   ├── GridSystem.vue -│   │   │   │   ├── Icons.vue -│   │   │   │   ├── Notifications.vue -│   │   │   │   ├── Panels.vue -│   │   │   │   ├── SweetAlert.vue -│   │   │   │   └── Typography.vue -│   │   │   ├── Dashboard.vue -│   │   │   ├── Forms -│   │   │   │   ├── ExtendedForms.vue -│   │   │   │   ├── RegularForms.vue -│   │   │   │   ├── ValidationForms -│   │   │   │   │   ├── LoginForm.vue -│   │   │   │   │   ├── RangeValidationForm.vue -│   │   │   │   │   ├── RegisterForm.vue -│   │   │   │   │   └── TypeValidationForm.vue -│   │   │   │   ├── ValidationForms.vue -│   │   │   │   ├── Wizard -│   │   │   │   │   ├── FirstStep.vue -│   │   │   │   │   ├── SecondStep.vue -│   │   │   │   │   └── ThirdStep.vue -│   │   │   │   └── Wizard.vue -│   │   │   ├── Layout -│   │   │   │   ├── Content.vue -│   │   │   │   ├── ContentFooter.vue -│   │   │   │   ├── DashboardLayout.vue -│   │   │   │   ├── Extra -│   │   │   │   │   ├── MobileMenu.vue -│   │   │   │   │   └── UserMenu.vue -│   │   │   │   └── TopNavbar.vue -│   │   │   ├── Maps -│   │   │   │   ├── API_KEY.js -│   │   │   │   ├── FullScreenMap.vue -│   │   │   │   ├── GoogleMaps.vue -│   │   │   │   ├── VectorMaps.vue -│   │   │   │   ├── WorldMap.vue -│   │   │   │   └── world_map.js -│   │   │   ├── Pages -│   │   │   │   ├── AuthLayout.vue -│   │   │   │   ├── Lock.vue -│   │   │   │   ├── Login.vue -│   │   │   │   ├── Pricing.vue -│   │   │   │   ├── Register.vue -│   │   │   │   ├── RtlSupport.vue -│   │   │   │   ├── TimeLinePage.vue -│   │   │   │   ├── UserProfile -│   │   │   │   │   ├── EditProfileForm.vue -│   │   │   │   │   └── UserCard.vue -│   │   │   │   └── UserProfile.vue -│   │   │   ├── Tables -│   │   │   │   ├── ExtendedTables.vue -│   │   │   │   ├── PaginatedTables.vue -│   │   │   │   ├── RegularTables.vue -│   │   │   │   └── users.js -│   │   │   └── Widgets.vue -│   │   ├── FixedPlugin.vue -│   │   └── index.js -│   ├── polyfills.js -│   └── routes -│   └── routes.js -└── vue.config.js - +└── src + ├── App.vue + ├── assets + │   ├── css + │   └── scss + │   ├── material-dashboard.scss + │   └── md + ├── components + │   ├── AnimatedNumber.vue + │   ├── Badge.vue + │   ├── Cards + │   │   ├── ChartCard.vue + │   │   ├── GlobalSalesCard.vue + │   │   ├── LockCard.vue + │   │   ├── LoginCard.vue + │   │   ├── NavTabsCard.vue + │   │   ├── PricingCard.vue + │   │   ├── ProductCard.vue + │   │   ├── SignupCard.vue + │   │   ├── StatsCard.vue + │   │   └── TestimonialCard.vue + │   ├── Collapse.vue + │   ├── Dropdown.vue + │   ├── Inputs + │   │   └── IconCheckbox.vue + │   ├── Modal.vue + │   ├── NotificationPlugin + │   │   ├── Notification.vue + │   │   ├── Notifications.vue + │   │   └── index.js + │   ├── Pagination.vue + │   ├── SidebarPlugin + │   │   ├── SideBar.vue + │   │   ├── SidebarItem.vue + │   │   └── index.js + │   ├── Slider.vue + │   ├── Tables + │   │   └── GlobalSalesTable.vue + │   ├── Tabs.vue + │   ├── Timeline + │   │   ├── TimeLine.vue + │   │   └── TimeLineItem.vue + │   ├── Wizard + │   │   ├── Wizard.vue + │   │   ├── WizardTab.vue + │   │   └── throttle.js + │   ├── WorldMap + │   │   ├── AsyncWorldMap.vue + │   │   ├── WorldMap.vue + │   │   └── world_map.js + │   └── index.js + ├── globalComponents.js + ├── globalDirectives.js + ├── main.js + ├── material-dashboard.js + ├── pages + │   ├── Dashboard + │   │   ├── Calendar.vue + │   │   ├── Charts.vue + │   │   ├── Components + │   │   │   ├── Buttons.vue + │   │   │   ├── GridSystem.vue + │   │   │   ├── Icons.vue + │   │   │   ├── Notifications.vue + │   │   │   ├── Panels.vue + │   │   │   ├── SweetAlert.vue + │   │   │   └── Typography.vue + │   │   ├── Dashboard.vue + │   │   ├── Forms + │   │   │   ├── ExtendedForms.vue + │   │   │   ├── RegularForms.vue + │   │   │   ├── ValidationForms + │   │   │   │   ├── LoginForm.vue + │   │   │   │   ├── RangeValidationForm.vue + │   │   │   │   ├── RegisterForm.vue + │   │   │   │   └── TypeValidationForm.vue + │   │   │   ├── ValidationForms.vue + │   │   │   ├── Wizard + │   │   │   │   ├── FirstStep.vue + │   │   │   │   ├── SecondStep.vue + │   │   │   │   └── ThirdStep.vue + │   │   │   └── Wizard.vue + │   │   ├── Layout + │   │   │   ├── Content.vue + │   │   │   ├── ContentFooter.vue + │   │   │   ├── DashboardLayout.vue + │   │   │   ├── Extra + │   │   │   │   ├── MobileMenu.vue + │   │   │   │   └── UserMenu.vue + │   │   │   └── TopNavbar.vue + │   │   ├── Maps + │   │   │   ├── API_KEY.js + │   │   │   ├── FullScreenMap.vue + │   │   │   ├── GoogleMaps.vue + │   │   │   ├── VectorMaps.vue + │   │   │   ├── WorldMap.vue + │   │   │   └── world_map.js + │   │   ├── Pages + │   │   │   ├── AuthLayout.vue + │   │   │   ├── Lock.vue + │   │   │   ├── Login.vue + │   │   │   ├── Pricing.vue + │   │   │   ├── Register.vue + │   │   │   ├── RtlSupport.vue + │   │   │   ├── TimeLinePage.vue + │   │   │   ├── UserProfile + │   │   │   │   ├── EditProfileForm.vue + │   │   │   │   └── UserCard.vue + │   │   │   └── UserProfile.vue + │   │   ├── Tables + │   │   │   ├── ExtendedTables.vue + │   │   │   ├── PaginatedTables.vue + │   │   │   ├── RegularTables.vue + │   │   │   └── users.js + │   │   └── Widgets.vue + │   ├── FixedPlugin.vue + │   └── index.js + └── routes + └── routes.js ``` ## Browser Support