From 2ad09840931d91a5dd60cebabbf40cd2452dfc99 Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Fri, 27 Sep 2019 21:58:14 +0200 Subject: [PATCH] Bozza x test VUE.js app --- .vscode/launch.json | 15 +++++++++++++++ GPW_Smart_Vue/app.js | 2 ++ 2 files changed, 17 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 GPW_Smart_Vue/app.js diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..04947ae --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // Usare IntelliSense per informazioni sui possibili attributi. + // Al passaggio del mouse vengono visualizzate le descrizioni degli attributi esistenti. + // Per ulteriori informazioni, visitare: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "chrome", + "request": "launch", + "name": "Launch Chrome against localhost", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + } + ] +} \ No newline at end of file diff --git a/GPW_Smart_Vue/app.js b/GPW_Smart_Vue/app.js new file mode 100644 index 0000000..46e7c19 --- /dev/null +++ b/GPW_Smart_Vue/app.js @@ -0,0 +1,2 @@ +var msg = 'Hello World'; +console.log(msg); \ No newline at end of file