From 7630382f0172bad1a0502c918996f9efffa764b5 Mon Sep 17 00:00:00 2001 From: Tor-Einar Skog <tor-einar.skog@nibio.no> Date: Wed, 3 Feb 2021 08:35:18 +0100 Subject: [PATCH] Added some docs and installed vue-i18n --- README.md | 2 ++ package-lock.json | 5 +++++ package.json | 3 ++- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e74f514..2e93379 100644 --- a/README.md +++ b/README.md @@ -65,3 +65,5 @@ Looking at /src/main.js, the Vue app is not started until Cordova fires the devi The router components (the "pages" in the Single Page Application that you manage) are found in `/src/components`. The router (paths + components definitions) is found in `/src/router/index.js` +### Checking out new code +Remember to always run `npm install` after checking out new code from the repository. That way, new dependencies will be installed. diff --git a/package-lock.json b/package-lock.json index ae7eb6e..551dde8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11255,6 +11255,11 @@ "integrity": "sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==", "dev": true }, + "vue-i18n": { + "version": "8.22.4", + "resolved": "https://registry.npmjs.org/vue-i18n/-/vue-i18n-8.22.4.tgz", + "integrity": "sha512-XLI5s0AdqMP2Lf4I4CmdmOq8kjb5DDFGR77wAuxCfpEuYSfhTRyyx6MetgZMiL6Lxa0DasjBOiOcciU3NkL3/Q==" + }, "vue-loader": { "version": "13.7.3", "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-13.7.3.tgz", diff --git a/package.json b/package.json index 3da19d9..e123358 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,7 @@ }, "dependencies": { "vue": "^2.5.2", + "vue-i18n": "^8.22.4", "vue-router": "^3.0.1" }, "devDependencies": { @@ -79,4 +80,4 @@ } } } -} \ No newline at end of file +} -- GitLab