move front to front/

This commit is contained in:
2023-07-30 21:49:15 +02:00
parent 4ece201d17
commit dbbd2884ea
24 changed files with 51 additions and 9 deletions

23
.gitignore~ Normal file
View File

@@ -0,0 +1,23 @@
.DS_Store
node_modules
/dist
# local env files
.env.local
.env.*.local
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

View File

View File

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

View File

@@ -1,6 +1,7 @@
@import "~bootstrap/scss/functions"; @import "~bootstrap/scss/functions";
@import "~bootstrap/scss/variables"; @import "~bootstrap/scss/variables";
@import "~bootstrap/scss/mixins";
$fa-font-path: '~@fortawesome/fontawesome-free/webfonts'; $fa-font-path: '~@fortawesome/fontawesome-free/webfonts';
@import '~@fortawesome/fontawesome-free/scss/fontawesome'; @import '~@fortawesome/fontawesome-free/scss/fontawesome';

View File

@@ -28,15 +28,7 @@ long_line_behaviour=1
long_line_column=96 long_line_column=96
[files] [files]
current_page=7 current_page=-1
FILE_NAME_0=149;Javascript;0;EUTF-8;0;1;0;%2Fhome%2Fziggi%2FProjects%2Fv4-app%2Fsrc%2Fmain.js;0;4
FILE_NAME_1=263;HTML;0;EUTF-8;2;1;0;%2Fhome%2Fziggi%2FProjects%2Fv4-app%2Fsrc%2FLayout.vue;0;4
FILE_NAME_2=795;None;0;EUTF-8;2;1;0;%2Fhome%2Fziggi%2FProjects%2Fv4-app%2Fsrc%2Fmain.scss;0;4
FILE_NAME_3=283;Javascript;0;EUTF-8;0;1;0;%2Fhome%2Fziggi%2FProjects%2Fv4-app%2Fsrc%2Frouter.js;0;2
FILE_NAME_4=642;HTML;0;EUTF-8;2;1;0;%2Fhome%2Fziggi%2FProjects%2Fv4-app%2Fsrc%2FLogin.vue;0;4
FILE_NAME_5=342;HTML;0;EUTF-8;2;1;0;%2Fhome%2Fziggi%2FProjects%2Fv4-app%2Fsrc%2FHome.vue;0;4
FILE_NAME_6=0;JSON;0;EUTF-8;2;1;0;%2Fhome%2Fziggi%2FProjects%2Fv4-app%2Fjsconfig.json;0;2
FILE_NAME_7=15;JSON;0;EUTF-8;2;1;0;%2Fhome%2Fziggi%2FProjects%2Fv4-app%2Fpackage.json;0;4
[VTE] [VTE]
last_dir=/home/ziggi last_dir=/home/ziggi

22
package.json~ Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "v4-app",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build"
},
"dependencies": {
"core-js": "^3.8.3",
"vue": "^3.2.13",
"vue-router": "^4.0.3"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-router": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"sass": "^1.32.7",
"sass-loader": "^12.0.0"
}
}

4
vue.config.js~ Normal file
View File

@@ -0,0 +1,4 @@
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true
})