Skip to content

Commit 3c528e9

Browse files
committed
feat: init
0 parents  commit 3c528e9

11 files changed

+2481
-0
lines changed

Diff for: .gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Local
2+
.DS_Store
3+
*.local
4+
*.log*
5+
6+
# Dist
7+
node_modules
8+
dist/
9+
10+
# IDE
11+
.vscode/*
12+
!.vscode/extensions.json
13+
.idea

Diff for: .vscode/extensions.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["Vue.volar"]
3+
}

Diff for: README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Vue Macros + Vue 3 + Rsbuild
2+
3+
- Vue 3
4+
- Vue Macros
5+
- Rsbuild
6+
7+
[Documentation](https://vue-macros.dev/)

Diff for: package.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "vue3-rsbuild",
3+
"private": true,
4+
"version": "1.0.0",
5+
"scripts": {
6+
"dev": "rsbuild dev --open",
7+
"build": "rsbuild build",
8+
"preview": "rsbuild preview"
9+
},
10+
"dependencies": {
11+
"@vueuse/core": "^12.0.0",
12+
"vue": "^3.5.13"
13+
},
14+
"devDependencies": {
15+
"@rsbuild/core": "^1.1.9",
16+
"@rsbuild/plugin-vue": "^1.0.5",
17+
"typescript": "^5.7.2",
18+
"unplugin-vue-macros": "^2.13.5"
19+
}
20+
}

0 commit comments

Comments
 (0)