]> git.ipfire.org Git - people/ms/westferry.git/commit
frontend: Create a new Vue project
authorMichael Tremer <michael.tremer@ipfire.org>
Fri, 9 May 2025 13:59:06 +0000 (13:59 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Fri, 9 May 2025 13:59:06 +0000 (13:59 +0000)
commit00257ab6d79c3d08d3b6837e129b7f5e173a1e4e
tree3b59a64f3cde954464f19f6edd3338512950f3f9
parent0827c612d4ac48775adb6ec497a124ba9e00180a
frontend: Create a new Vue project

This is a demo project with no changes whatsoever.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
39 files changed:
Makefile.am
frontend/.editorconfig [new file with mode: 0644]
frontend/.gitattributes [new file with mode: 0644]
frontend/.gitignore [new file with mode: 0644]
frontend/.vscode/extensions.json [new file with mode: 0644]
frontend/README.md [new file with mode: 0644]
frontend/e2e/tsconfig.json [new file with mode: 0644]
frontend/e2e/vue.spec.ts [new file with mode: 0644]
frontend/env.d.ts [new file with mode: 0644]
frontend/eslint.config.ts [new file with mode: 0644]
frontend/index.html [new file with mode: 0644]
frontend/package-lock.json [new file with mode: 0644]
frontend/package.json [new file with mode: 0644]
frontend/playwright.config.ts [new file with mode: 0644]
frontend/public/favicon.ico [new file with mode: 0644]
frontend/src/App.vue [new file with mode: 0644]
frontend/src/assets/base.css [new file with mode: 0644]
frontend/src/assets/logo.svg [new file with mode: 0644]
frontend/src/assets/main.css [new file with mode: 0644]
frontend/src/components/HelloWorld.vue [new file with mode: 0644]
frontend/src/components/TheWelcome.vue [new file with mode: 0644]
frontend/src/components/WelcomeItem.vue [new file with mode: 0644]
frontend/src/components/__tests__/HelloWorld.spec.ts [new file with mode: 0644]
frontend/src/components/icons/IconCommunity.vue [new file with mode: 0644]
frontend/src/components/icons/IconDocumentation.vue [new file with mode: 0644]
frontend/src/components/icons/IconEcosystem.vue [new file with mode: 0644]
frontend/src/components/icons/IconSupport.vue [new file with mode: 0644]
frontend/src/components/icons/IconTooling.vue [new file with mode: 0644]
frontend/src/main.ts [new file with mode: 0644]
frontend/src/router/index.ts [new file with mode: 0644]
frontend/src/stores/counter.ts [new file with mode: 0644]
frontend/src/views/AboutView.vue [new file with mode: 0644]
frontend/src/views/HomeView.vue [new file with mode: 0644]
frontend/tsconfig.app.json [new file with mode: 0644]
frontend/tsconfig.json [new file with mode: 0644]
frontend/tsconfig.node.json [new file with mode: 0644]
frontend/tsconfig.vitest.json [new file with mode: 0644]
frontend/vite.config.ts [new file with mode: 0644]
frontend/vitest.config.ts [new file with mode: 0644]