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