Skip to content

Commit 7765a0d

Browse files
author
BuildTools
committed
initial commit
1 parent e67fa3a commit 7765a0d

29 files changed

+6160
-93
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.DS_Store
22
node_modules
33
/dist
4+
.history
45

56

67
# local env files

package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,23 @@
55
"scripts": {
66
"serve": "vue-cli-service serve",
77
"build": "vue-cli-service build",
8-
"lint": "vue-cli-service lint"
8+
"lint": "vue-cli-service lint",
9+
"tauri:build": "vue-cli-service tauri:build",
10+
"tauri:serve": "vue-cli-service tauri:serve"
911
},
1012
"dependencies": {
13+
"@tauri-apps/api": "^1.0.0-beta.5",
1114
"core-js": "^3.6.5",
1215
"vue": "^2.6.11",
16+
"vue-tree-list": "^1.5.0",
1317
"vuex": "^3.4.0"
1418
},
1519
"devDependencies": {
1620
"@vue/cli-plugin-babel": "~4.5.0",
1721
"@vue/cli-plugin-eslint": "~4.5.0",
1822
"@vue/cli-plugin-vuex": "~4.5.0",
1923
"@vue/cli-service": "~4.5.0",
24+
"@vue/devtools": "^5.3.4",
2025
"@vue/eslint-config-standard": "^5.1.2",
2126
"babel-eslint": "^10.1.0",
2227
"eslint": "^6.7.2",
@@ -28,6 +33,7 @@
2833
"lint-staged": "^9.5.0",
2934
"sass": "^1.26.5",
3035
"sass-loader": "^8.0.2",
36+
"vue-cli-plugin-tauri": "~1.0.0-beta.3",
3137
"vue-template-compiler": "^2.6.11"
3238
},
3339
"gitHooks": {

public/index.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@
66
<meta name="viewport" content="width=device-width,initial-scale=1.0">
77
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
88
<title><%= htmlWebpackPlugin.options.title %></title>
9+
<style>
10+
html,body{
11+
margin: 0;
12+
padding: 0;
13+
}
14+
</style>
915
</head>
1016
<body>
1117
<noscript>

src-tauri/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
/target/
4+
WixTools

0 commit comments

Comments
 (0)