diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..2f7ebba --- /dev/null +++ b/.editorconfig @@ -0,0 +1,4 @@ +root = true + +[*.js] +indent_size = 2 \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index ed35f1c..47aa10f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2136,6 +2136,11 @@ "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", "dev": true }, + "bootstrap": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.3.1.tgz", + "integrity": "sha512-rXqOmH1VilAt2DyPzluTi2blhk17bO7ef+zLLPlWvG494pDxcM234pJ8wTc/6R40UWizAIIMgxjvxZg5kmsbag==" + }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -6339,6 +6344,11 @@ "supports-color": "^6.1.0" } }, + "jquery": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.4.1.tgz", + "integrity": "sha512-36+AdBzCL+y6qjw5Tx7HgzeGCzC81MDDgaUP8ld2zhx58HdqXGoBd+tHdrBMiyjGQs0Hxs/MLZTu/eHNJJuWPw==" + }, "js-levenshtein": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz", @@ -7789,6 +7799,11 @@ } } }, + "popper.js": { + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.0.tgz", + "integrity": "sha512-+G+EkOPoE5S/zChTpmBSSDYmhXJ5PsW8eMhH8cP/CQHMFPBG/kC9Y5IIw6qNYgdJ+/COf0ddY2li28iHaZRSjw==" + }, "portfinder": { "version": "1.0.25", "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.25.tgz", diff --git a/package.json b/package.json index 3963f88..b275487 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,10 @@ "lint": "vue-cli-service lint" }, "dependencies": { + "bootstrap": "^4.3.1", "core-js": "^3.3.2", + "jquery": "^3.4.1", + "popper.js": "^1.16.0", "vue": "^2.6.10", "vuex": "^3.1.2" }, diff --git a/src/App.vue b/src/App.vue index d07f54c..6adedaa 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,28 +1,22 @@ - - - - + + + Workingtitle + + + + Sign out + + + + diff --git a/src/components/HelloWorld.vue b/src/components/HelloWorld.vue deleted file mode 100644 index e3e79ae..0000000 --- a/src/components/HelloWorld.vue +++ /dev/null @@ -1,58 +0,0 @@ - - - {{ msg }} - - For a guide and recipes on how to configure / customize this project, - check out the - vue-cli documentation. - - Installed CLI Plugins - - babel - eslint - - Essential Links - - Core Docs - Forum - Community Chat - Twitter - News - - Ecosystem - - vue-router - vuex - vue-devtools - vue-loader - awesome-vue - - - - - - - - diff --git a/src/main.js b/src/main.js index 18b0f29..c3e9d6f 100644 --- a/src/main.js +++ b/src/main.js @@ -2,6 +2,10 @@ import Vue from 'vue'; import App from './App.vue'; import store from './store'; +import 'jquery/dist/jquery.min.js'; +import 'bootstrap/dist/css/bootstrap.min.css'; +import 'bootstrap/dist/js/bootstrap.min.js'; + new Vue({ el: '#app', store,
- For a guide and recipes on how to configure / customize this project, - check out the - vue-cli documentation. -