diff --git a/package-lock.json b/package-lock.json
index e0454ef..226ebe4 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -10916,6 +10916,20 @@
"integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==",
"dev": true
},
+ "vuetify": {
+ "version": "2.2.3",
+ "resolved": "https://registry.npmjs.org/vuetify/-/vuetify-2.2.3.tgz",
+ "integrity": "sha512-qAnNEk01sZGnV36d2b/8EQahvnqwxP5Mfii1G5hUOXUCLCNRbqwn7G419zR/2KxskCU0pmgnYaVA8KsL2oBYFw=="
+ },
+ "vuetify-loader": {
+ "version": "1.4.3",
+ "resolved": "https://registry.npmjs.org/vuetify-loader/-/vuetify-loader-1.4.3.tgz",
+ "integrity": "sha512-fS0wRil682Ebsj2as+eruBoMPKaQYDhu/fDAndnTItzSY4RK4LOEIsssVL4vD6QY8dvUgoGL84SUQ6vGr777CA==",
+ "dev": true,
+ "requires": {
+ "loader-utils": "^1.2.0"
+ }
+ },
"watchpack": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz",
diff --git a/package.json b/package.json
index cb8d5c6..ddd3b35 100644
--- a/package.json
+++ b/package.json
@@ -8,7 +8,8 @@
},
"dependencies": {
"core-js": "^3.4.4",
- "vue": "^2.6.10"
+ "vue": "^2.6.10",
+ "vuetify": "^2.1.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.1.0",
@@ -20,7 +21,8 @@
"sass": "^1.19.0",
"sass-loader": "^8.0.0",
"vue-cli-plugin-vuetify": "^2.0.3",
- "vue-template-compiler": "^2.6.10"
+ "vue-template-compiler": "^2.6.10",
+ "vuetify-loader": "^1.3.0"
},
"eslintConfig": {
"root": true,
diff --git a/src/App.vue b/src/App.vue
new file mode 100644
index 0000000..eb9fc52
--- /dev/null
+++ b/src/App.vue
@@ -0,0 +1,25 @@
+
+
+
+ Open Speechless
+
+
+
+
+
+
+
+
diff --git a/src/main.js b/src/main.js
new file mode 100644
index 0000000..e18b167
--- /dev/null
+++ b/src/main.js
@@ -0,0 +1,10 @@
+import Vue from 'vue'
+import App from './App.vue'
+import vuetify from './plugins/vuetify';
+
+Vue.config.productionTip = false
+
+new Vue({
+ vuetify,
+ render: h => h(App)
+}).$mount('#app')
diff --git a/src/plugins/vuetify.js b/src/plugins/vuetify.js
new file mode 100644
index 0000000..ec46adb
--- /dev/null
+++ b/src/plugins/vuetify.js
@@ -0,0 +1,7 @@
+import Vue from 'vue';
+import Vuetify from 'vuetify/lib';
+
+Vue.use(Vuetify);
+
+export default new Vuetify({
+});