create-blocklet 0.2.5 → 0.2.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/common/.github/workflows/main.yml +5 -5
  2. package/common/.prettierrc +1 -0
  3. package/common/Makefile +1 -1
  4. package/common/_gitignore +1 -0
  5. package/index.js +35 -21
  6. package/lib/abtnode.js +8 -8
  7. package/lib/index.js +0 -0
  8. package/package.json +1 -1
  9. package/template-dapp/react/README.md +23 -23
  10. package/template-dapp/vue/README.md +24 -24
  11. package/template-dapp/vue/blocklet.yml +11 -1
  12. package/template-dapp/vue2/.env +1 -0
  13. package/template-dapp/vue2/README.md +147 -0
  14. package/template-dapp/vue2/babel.config.js +3 -0
  15. package/template-dapp/vue2/blocklet.md +3 -0
  16. package/template-dapp/vue2/blocklet.yml +60 -0
  17. package/template-dapp/vue2/package.json +68 -0
  18. package/template-dapp/vue2/public/index.html +24 -0
  19. package/template-dapp/vue2/server/hooks/pre-start.js +33 -0
  20. package/template-dapp/vue2/server/index.js +55 -0
  21. package/template-dapp/vue2/server/libs/auth.js +31 -0
  22. package/template-dapp/vue2/server/libs/env.js +12 -0
  23. package/template-dapp/vue2/server/libs/logger.js +3 -0
  24. package/template-dapp/vue2/server/middlewares/user.js +10 -0
  25. package/template-dapp/vue2/server/routes/index.js +6 -0
  26. package/template-dapp/vue2/src/App.vue +22 -0
  27. package/template-dapp/vue2/src/assets/logo.png +0 -0
  28. package/template-dapp/vue2/src/components/HelloWorld.vue +74 -0
  29. package/template-dapp/vue2/src/libs/api.js +14 -0
  30. package/template-dapp/vue2/src/main.js +10 -0
  31. package/template-dapp/vue2/src/pages/About.vue +13 -0
  32. package/template-dapp/vue2/src/pages/Home.vue +37 -0
  33. package/template-dapp/vue2/src/router.js +24 -0
  34. package/template-dapp/vue2/vue.config.js +11 -0
  35. package/template-static/react/README.md +24 -24
  36. package/template-static/vue/README.md +24 -24
  37. package/template-static/vue/index.html +3 -3
  38. package/template-static/vue2/.env +1 -0
  39. package/template-static/vue2/README.md +147 -0
  40. package/template-static/vue2/babel.config.js +3 -0
  41. package/template-static/vue2/blocklet.md +3 -0
  42. package/template-static/vue2/blocklet.yml +50 -0
  43. package/template-static/vue2/package.json +48 -0
  44. package/template-static/vue2/public/index.html +24 -0
  45. package/template-static/vue2/src/App.vue +22 -0
  46. package/template-static/vue2/src/assets/logo.png +0 -0
  47. package/template-static/vue2/src/components/HelloWorld.vue +74 -0
  48. package/template-static/vue2/src/main.js +10 -0
  49. package/template-static/vue2/src/pages/About.vue +13 -0
  50. package/template-static/vue2/src/pages/Home.vue +20 -0
  51. package/template-static/vue2/src/router.js +24 -0
  52. package/template-static/vue2/vue.config.js +6 -0
  53. package/CHANGELOG.md +0 -62
@@ -28,17 +28,17 @@ This blocklet is a static project, which means this is a frontend application. I
28
28
 
29
29
  ## Development
30
30
 
31
- 1. Make sure you have [@abtnode/cli](https://www.npmjs.com/package/@abtnode/cli) installed
31
+ 1. Make sure you have [@blocklet/cli](https://www.npmjs.com/package/@blocklet/cli) installed
32
32
 
33
- Blocklet needs abtnode as a dependency. So you need to install it first.
34
- `npm install -g @abtnode/cli`
33
+ Blocklet needs blocklet server as a dependency. So you need to install it first.
34
+ `npm install -g @blocklet/cli`
35
35
  See details in [https://docs.arcblock.io/abtnode/en/introduction/abtnode-setup#use-the-binary-distribution](https://docs.arcblock.io/abtnode/en/introduction/abtnode-setup#use-the-binary-distribution)
36
36
 
37
- 2. Init abtnode & start abtnode
37
+ 2. Init blocklet server & start blocklet server
38
38
 
39
- Before starting an abtnode, you need to init abtnode.
40
- `abtnode init --mode=debug`
41
- `abtnode start`
39
+ Before starting an blocklet server, you need to init blocklet server.
40
+ `blocklet server init --mode=debug`
41
+ `blocklet server start`
42
42
  See details in [https://docs.arcblock.io/abtnode/en/introduction/abtnode-setup#configure-abt-node](https://docs.arcblock.io/abtnode/en/introduction/abtnode-setup#configure-abt-node)
43
43
 
44
44
  3. Go to the project directory `cd [name]`
@@ -51,19 +51,19 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
51
51
 
52
52
  ## Deploy
53
53
 
54
- - If you want to deploy this blocklet to local abtnode, you can use `blocklet deploy .blocklet/bundle` command(Make sure the blocklet is bundled before deployment.)
54
+ - If you want to deploy this blocklet to local blocklet server, you can use `blocklet deploy .blocklet/bundle` command(Make sure the blocklet is bundled before deployment.)
55
55
  > Or you can simply use `npm run deploy` command.
56
- - If you want to deploy this blocklet to remote abtnode, you can use the command below.
56
+ - If you want to deploy this blocklet to remote blocklet server, you can use the command below.
57
57
 
58
58
  ```shell
59
- blocklet deploy .blocklet/bundle --endpoint {your abtnode url} --access-key {abtnode access key} --access-secret {abtnode access secret}
59
+ blocklet deploy .blocklet/bundle --endpoint {your blocklet server url} --access-key {blocklet server access key} --access-secret {blocklet server access secret}
60
60
  ```
61
61
 
62
62
  > Make sure the blocklet is bundled before deployment.
63
63
 
64
- ## Upload to blocklet registry
64
+ ## Upload to blocklet store
65
65
 
66
- - If you want to upload the blocklet to any registry for other users to download and use, you can following the following instructions.
66
+ - If you want to upload the blocklet to any store for other users to download and use, you can following the following instructions.
67
67
 
68
68
  Bump version at first.
69
69
 
@@ -71,22 +71,22 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
71
71
  make bump-version
72
72
  ```
73
73
 
74
- Then config blocklet registry url.
75
- You can use those registry url in below.
74
+ Then config blocklet store url.
75
+ You can use those store url in below.
76
76
 
77
- 1. [https://registry.arcblock.io/](https://registry.arcblock.io/)
78
- 2. [https://dev.registry.arcblock.io/](https://dev.registry.arcblock.io/)
79
- 3. A blocklet registry started by yourself.
80
- > Make sure you have installed a `blocklet registry` on your own abtnode. Check it on here: [https://registry.arcblock.io/blocklet/z8ia29UsENBg6tLZUKi2HABj38Cw1LmHZocbQ](https://registry.arcblock.io/blocklet/z8ia29UsENBg6tLZUKi2HABj38Cw1LmHZocbQ)
77
+ 1. [https://store.blocklet.dev/](https://store.blocklet.dev/)
78
+ 2. [https://dev.store.blocklet.dev/](https://dev.store.blocklet.dev/)
79
+ 3. A blocklet store started by yourself.
80
+ > Make sure you have installed a `blocklet store` on your own blocklet server. Check it on here: [https://store.blocklet.dev/blocklet/z8ia29UsENBg6tLZUKi2HABj38Cw1LmHZocbQ](https://store.blocklet.dev/blocklet/z8ia29UsENBg6tLZUKi2HABj38Cw1LmHZocbQ)
81
81
 
82
82
  ```shell
83
- blocklet config set registry {registry url}
83
+ blocklet config set store {store url}
84
84
  ```
85
85
 
86
- Get a `accessToken` from blocklet registry.
86
+ Get a `accessToken` from blocklet store.
87
87
 
88
88
  > Why we need a `accessToken`?
89
- > A `accessToken` is genrate by blocklet registry, which help us upload our blocklet to any registry.
89
+ > A `accessToken` is genrate by blocklet store, which help us upload our blocklet to any store.
90
90
 
91
91
  Set `accessToken` to blocklet config
92
92
 
@@ -94,7 +94,7 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
94
94
  blocklet config set accessToken {accessToken}
95
95
  ```
96
96
 
97
- Upload a new version to a registry.
97
+ Upload a new version to a store.
98
98
 
99
99
  > Make sure the blocklet is bundled before upload.
100
100
 
@@ -104,7 +104,7 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
104
104
 
105
105
  Or you can simply use `npm run upload` command.
106
106
 
107
- - You also can upload a new version to blocklet registry by Github CI.
107
+ - You also can upload a new version to blocklet store by Github CI.
108
108
  Bump version at first.
109
109
 
110
110
  ```shell
@@ -112,7 +112,7 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
112
112
  ```
113
113
 
114
114
  Push your code to Github main/master branch, or make a pull request to the main/master branch.
115
- The CI workflow will automatically upload a new version to a registry.
115
+ The CI workflow will automatically upload a new version to a store.
116
116
 
117
117
  ## Q & A
118
118
 
@@ -2,9 +2,9 @@
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta charset="UTF-8" />
5
- <link rel="icon" type="image/svg+xml" href="<%- base %>/favicon.svg" />
6
- <link rel="alternate icon" href="<%- base %>/favicon.ico" />
7
- <link rel="mask-icon" href="<%- base %>/favicon.svg" color="#4F6AF5" />
5
+ <link rel="icon" type="image/svg+xml" href="<%- base %>favicon.svg" />
6
+ <link rel="alternate icon" href="<%- base %>favicon.ico" />
7
+ <link rel="mask-icon" href="<%- base %>favicon.svg" color="#4F6AF5" />
8
8
  <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
9
9
  <meta name="theme-color" content="#4F6AF5" />
10
10
  <meta name="description" content="Web site created using create-blocklet" />
@@ -0,0 +1 @@
1
+ APP_TITLE=''
@@ -0,0 +1,147 @@
1
+ # Getting Started with Create Blocklet
2
+
3
+ This project was bootstrapped with [Create Blocklet](https://github.com/blocklet/create-blocklet).
4
+
5
+ This blocklet is a static project, which means this is a frontend application. It's contained `client` code.
6
+
7
+ ## File Structure
8
+
9
+ - public/ - static files
10
+ - favicon.ico - favicon
11
+ - favicon.svg - favicon
12
+ - index.html - main html file, template for vue
13
+ - screenshots/ - Screenshots
14
+ - src/ - Client side code (A standard vue app structure)
15
+ - .env - Environment variables
16
+ - .env.local - Local environment variables
17
+ - .eslintrc.js - ESLint configuration
18
+ - .gitignore - Git ignore file
19
+ - .prettierrc - Prettier configuration
20
+ - blocklet.md - Blocklet README
21
+ - blocklet.yml - Blocklet configuration
22
+ - LICENSE - License file
23
+ - logo.png - Blocklet logo file
24
+ - Makefile - Makefile
25
+ - package.json - Npm package file
26
+ - README.md - A guide for this blocklet
27
+ - version - Version file
28
+
29
+ ## Development
30
+
31
+ 1. Make sure you have [@blocklet/cli](https://www.npmjs.com/package/@blocklet/cli) installed
32
+
33
+ Blocklet needs blocklet server as a dependency. So you need to install it first.
34
+ `npm install -g @blocklet/cli`
35
+ See details in [https://docs.arcblock.io/abtnode/en/introduction/abtnode-setup#use-the-binary-distribution](https://docs.arcblock.io/abtnode/en/introduction/abtnode-setup#use-the-binary-distribution)
36
+
37
+ 2. Init blocklet server & start blocklet server
38
+
39
+ Before starting an blocklet server, you need to init blocklet server.
40
+ `blocklet server init --mode=debug`
41
+ `blocklet server start`
42
+ See details in [https://docs.arcblock.io/abtnode/en/introduction/abtnode-setup#configure-abt-node](https://docs.arcblock.io/abtnode/en/introduction/abtnode-setup#configure-abt-node)
43
+
44
+ 3. Go to the project directory `cd [name]`
45
+ 4. Install dependencies: `npm install` or `yarn`
46
+ 5. Start development server: `blocklet dev`
47
+
48
+ ## Bundle
49
+
50
+ After developing a blocklet, you may need to bundle it. Use `npm run bundle` command.
51
+
52
+ ## Deploy
53
+
54
+ - If you want to deploy this blocklet to local blocklet server, you can use `blocklet deploy .blocklet/bundle` command(Make sure the blocklet is bundled before deployment.)
55
+ > Or you can simply use `npm run deploy` command.
56
+ - If you want to deploy this blocklet to remote blocklet server, you can use the command below.
57
+
58
+ ```shell
59
+ blocklet deploy .blocklet/bundle --endpoint {your blocklet server url} --access-key {blocklet server access key} --access-secret {blocklet server access secret}
60
+ ```
61
+
62
+ > Make sure the blocklet is bundled before deployment.
63
+
64
+ ## Upload to blocklet store
65
+
66
+ - If you want to upload the blocklet to any store for other users to download and use, you can following the following instructions.
67
+
68
+ Bump version at first.
69
+
70
+ ```shell
71
+ make bump-version
72
+ ```
73
+
74
+ Then config blocklet store url.
75
+ You can use those store url in below.
76
+
77
+ 1. [https://store.blocklet.dev/](https://store.blocklet.dev/)
78
+ 2. [https://dev.store.blocklet.dev/](https://dev.store.blocklet.dev/)
79
+ 3. A blocklet store started by yourself.
80
+ > Make sure you have installed a `blocklet store` on your own blocklet server. Check it on here: [https://store.blocklet.dev/blocklet/z8ia29UsENBg6tLZUKi2HABj38Cw1LmHZocbQ](https://store.blocklet.dev/blocklet/z8ia29UsENBg6tLZUKi2HABj38Cw1LmHZocbQ)
81
+
82
+ ```shell
83
+ blocklet config set store {store url}
84
+ ```
85
+
86
+ Get a `accessToken` from blocklet store.
87
+
88
+ > Why we need a `accessToken`?
89
+ > A `accessToken` is genrate by blocklet store, which help us upload our blocklet to any store.
90
+
91
+ Set `accessToken` to blocklet config
92
+
93
+ ```shell
94
+ blocklet config set accessToken {accessToken}
95
+ ```
96
+
97
+ Upload a new version to a store.
98
+
99
+ > Make sure the blocklet is bundled before upload.
100
+
101
+ ```shell
102
+ blocklet upload
103
+ ```
104
+
105
+ Or you can simply use `npm run upload` command.
106
+
107
+ - You also can upload a new version to blocklet store by Github CI.
108
+ Bump version at first.
109
+
110
+ ```shell
111
+ make bump-version
112
+ ```
113
+
114
+ Push your code to Github main/master branch, or make a pull request to the main/master branch.
115
+ The CI workflow will automatically upload a new version to a store.
116
+
117
+ ## Q & A
118
+
119
+ 1. Q: How to change a blocklet's name?
120
+
121
+ A: Change the `name` field in the `package.json` file, change the `name` field in the `blocklet.yml` file.
122
+
123
+ You can also change the `title` field and `description` field in the `blocklet.yml` file.
124
+
125
+ Run `blocklet meta` command, you will get a `did` config, copy the `did` value.
126
+
127
+ Replace this command `"bundle": "PUBLIC_PATH=/.blocklet/proxy/<%= did %> npm run build",` in `package.json`
128
+
129
+ Replace `did` field in the `blocklet.yml`
130
+
131
+ 2. Q: How to change a blocklet's logo?
132
+
133
+ Change the `logo.png` file root folder.
134
+
135
+ Or you can change the `logo` field in the `blocklet.yml` file.
136
+
137
+ > Make sure you have added the logo path to the `blocklet.yml` file `files` field.
138
+
139
+ ## Learn More
140
+
141
+ - Full specification of `blocklet.yml`: [https://github.com/blocklet/blocklet-specification/blob/main/docs/meta.md](https://github.com/blocklet/blocklet-specification/blob/main/docs/meta.md)
142
+ - Full document of AbtNode & blocklet development: [https://docs.arcblock.io/abtnode/en/introduction](https://docs.arcblock.io/abtnode/en/introduction)
143
+
144
+ ## License
145
+
146
+ The code is licensed under the Apache 2.0 license found in the
147
+ [LICENSE](LICENSE) file.
@@ -0,0 +1,3 @@
1
+ module.exports = {
2
+ presets: ['@vue/cli-plugin-babel/preset'],
3
+ };
@@ -0,0 +1,3 @@
1
+ # template-vue2
2
+
3
+ A vue2 template for creating a new blocklet project.
@@ -0,0 +1,50 @@
1
+ name: template-vue2
2
+ title: Blocklet Template Vue2
3
+ description: ABT Node blocklet project
4
+ keywords:
5
+ - blocklet
6
+ - vue
7
+ group: static
8
+ did: ''
9
+ main: dist
10
+ author:
11
+ name: zhanghan
12
+ email: zhanghan@arcblock.io
13
+ repository:
14
+ type: git
15
+ url: 'git+https://github.com/blocklet/create-blocklet.git'
16
+ specVersion: 1.1.1
17
+ version: 0.1.0
18
+ logo: logo.png
19
+ files:
20
+ - logo.png
21
+ - README.md
22
+ - blocklet.md
23
+ - screenshots
24
+ interfaces:
25
+ - type: web
26
+ name: publicUrl
27
+ path: /
28
+ prefix: '*'
29
+ port: BLOCKLET_PORT
30
+ protocol: http
31
+ community: ''
32
+ documentation: ''
33
+ homepage: ''
34
+ license: ''
35
+ charging:
36
+ price: 0
37
+ tokens: []
38
+ shares: []
39
+ timeout:
40
+ start: 60
41
+ requirements:
42
+ abtnode: '>=1.4.0'
43
+ os: '*'
44
+ cpu: '*'
45
+ scripts:
46
+ dev: npm run start
47
+ environments: []
48
+ capabilities: {}
49
+ screenshots: []
50
+ children: []
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "template-vue2",
3
+ "version": "0.1.0",
4
+ "private": true,
5
+ "scripts": {
6
+ "serve": "vue-cli-service serve",
7
+ "build": "vue-cli-service build",
8
+ "lint": "vue-cli-service lint",
9
+ "start": "npm run serve",
10
+ "clean": "rm -rf .blocklet",
11
+ "bundle": "npm run clean && PUBLIC_PATH=/.blocklet/proxy/<%= did %> npm run build && blocklet bundle --zip --create-release",
12
+ "deploy": "npm run bundle && blocklet deploy .blocklet/bundle",
13
+ "upload": "npm run bundle && blocklet upload .blocklet/release/blocklet.json"
14
+ },
15
+ "dependencies": {
16
+ "core-js": "^3.6.5",
17
+ "vue": "^2.6.11",
18
+ "vue-router": "^3.5.3"
19
+ },
20
+ "devDependencies": {
21
+ "@vue/cli-plugin-babel": "~4.5.0",
22
+ "@vue/cli-plugin-eslint": "~4.5.0",
23
+ "@vue/cli-service": "~4.5.0",
24
+ "babel-eslint": "^10.1.0",
25
+ "eslint": "^6.7.2",
26
+ "eslint-plugin-vue": "^6.2.2",
27
+ "vue-template-compiler": "^2.6.11"
28
+ },
29
+ "eslintConfig": {
30
+ "root": true,
31
+ "env": {
32
+ "node": true
33
+ },
34
+ "extends": [
35
+ "plugin:vue/essential",
36
+ "eslint:recommended"
37
+ ],
38
+ "parserOptions": {
39
+ "parser": "babel-eslint"
40
+ },
41
+ "rules": {}
42
+ },
43
+ "browserslist": [
44
+ "> 1%",
45
+ "last 2 versions",
46
+ "not dead"
47
+ ]
48
+ }
@@ -0,0 +1,24 @@
1
+ <!DOCTYPE html>
2
+ <html lang="">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <link rel="icon" type="image/svg+xml" href="<%= BASE_URL %>favicon.svg" />
6
+ <link rel="alternate icon" href="<%= BASE_URL %>favicon.ico" />
7
+ <link rel="mask-icon" href="<%= BASE_URL %>favicon.svg" color="#4F6AF5" />
8
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
9
+ <meta name="theme-color" content="#4F6AF5" />
10
+ <meta name="description" content="Web site created using create-blocklet" />
11
+ <title><%= htmlWebpackPlugin.options.title %></title>
12
+ <script src="__meta__.js"></script>
13
+ </head>
14
+ <body>
15
+ <noscript>
16
+ <strong
17
+ >We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please
18
+ enable it to continue.</strong
19
+ >
20
+ </noscript>
21
+ <div id="app"></div>
22
+ <!-- built files will be auto injected -->
23
+ </body>
24
+ </html>
@@ -0,0 +1,22 @@
1
+ <template>
2
+ <div id="app">
3
+ <router-view />
4
+ </div>
5
+ </template>
6
+
7
+ <script>
8
+ export default {
9
+ name: 'App',
10
+ };
11
+ </script>
12
+
13
+ <style>
14
+ #app {
15
+ font-family: Avenir, Helvetica, Arial, sans-serif;
16
+ -webkit-font-smoothing: antialiased;
17
+ -moz-osx-font-smoothing: grayscale;
18
+ text-align: center;
19
+ color: #2c3e50;
20
+ margin-top: 60px;
21
+ }
22
+ </style>
@@ -0,0 +1,74 @@
1
+ <template>
2
+ <div class="hello">
3
+ <h1>{{ msg }}</h1>
4
+ <p>
5
+ For a guide and recipes on how to configure / customize this project,<br />
6
+ check out the
7
+ <a href="https://cli.vuejs.org" target="_blank" rel="noopener">vue-cli documentation</a>.
8
+ </p>
9
+ <h3>Installed CLI Plugins</h3>
10
+ <ul>
11
+ <li>
12
+ <a
13
+ href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-babel"
14
+ target="_blank"
15
+ rel="noopener"
16
+ >babel</a
17
+ >
18
+ </li>
19
+ <li>
20
+ <a
21
+ href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-eslint"
22
+ target="_blank"
23
+ rel="noopener"
24
+ >eslint</a
25
+ >
26
+ </li>
27
+ </ul>
28
+ <h3>Essential Links</h3>
29
+ <ul>
30
+ <li><a href="https://vuejs.org" target="_blank" rel="noopener">Core Docs</a></li>
31
+ <li><a href="https://forum.vuejs.org" target="_blank" rel="noopener">Forum</a></li>
32
+ <li><a href="https://chat.vuejs.org" target="_blank" rel="noopener">Community Chat</a></li>
33
+ <li><a href="https://twitter.com/vuejs" target="_blank" rel="noopener">Twitter</a></li>
34
+ <li><a href="https://news.vuejs.org" target="_blank" rel="noopener">News</a></li>
35
+ </ul>
36
+ <h3>Ecosystem</h3>
37
+ <ul>
38
+ <li><a href="https://router.vuejs.org" target="_blank" rel="noopener">vue-router</a></li>
39
+ <li><a href="https://vuex.vuejs.org" target="_blank" rel="noopener">vuex</a></li>
40
+ <li>
41
+ <a href="https://github.com/vuejs/vue-devtools#vue-devtools" target="_blank" rel="noopener">vue-devtools</a>
42
+ </li>
43
+ <li><a href="https://vue-loader.vuejs.org" target="_blank" rel="noopener">vue-loader</a></li>
44
+ <li><a href="https://github.com/vuejs/awesome-vue" target="_blank" rel="noopener">awesome-vue</a></li>
45
+ </ul>
46
+ </div>
47
+ </template>
48
+
49
+ <script>
50
+ export default {
51
+ name: 'HelloWorld',
52
+ props: {
53
+ msg: String,
54
+ },
55
+ };
56
+ </script>
57
+
58
+ <!-- Add "scoped" attribute to limit CSS to this component only -->
59
+ <style scoped>
60
+ h3 {
61
+ margin: 40px 0 0;
62
+ }
63
+ ul {
64
+ list-style-type: none;
65
+ padding: 0;
66
+ }
67
+ li {
68
+ display: inline-block;
69
+ margin: 0 10px;
70
+ }
71
+ a {
72
+ color: #42b983;
73
+ }
74
+ </style>
@@ -0,0 +1,10 @@
1
+ import Vue from 'vue';
2
+ import App from './App.vue';
3
+ import router from './router';
4
+
5
+ Vue.config.productionTip = false;
6
+
7
+ new Vue({
8
+ router,
9
+ render: (h) => h(App),
10
+ }).$mount('#app');
@@ -0,0 +1,13 @@
1
+ <template>
2
+ <div>
3
+ <h1>About</h1>
4
+ <p>This is the about page</p>
5
+ <router-link to="/">Back home</router-link>
6
+ </div>
7
+ </template>
8
+
9
+ <script>
10
+ export default {};
11
+ </script>
12
+
13
+ <style></style>
@@ -0,0 +1,20 @@
1
+ <template>
2
+ <div>
3
+ <img alt="Vue logo" src="../assets/logo.png" />
4
+ <div>
5
+ <router-link to="/about">About page</router-link>
6
+ </div>
7
+ <HelloWorld msg="Welcome to Your Vue.js App" />
8
+ </div>
9
+ </template>
10
+
11
+ <script>
12
+ import HelloWorld from '../components/HelloWorld.vue';
13
+ export default {
14
+ components: {
15
+ HelloWorld,
16
+ },
17
+ };
18
+ </script>
19
+
20
+ <style></style>
@@ -0,0 +1,24 @@
1
+ import Vue from 'vue';
2
+ import VueRouter from 'vue-router';
3
+
4
+ import Home from './pages/Home';
5
+ import About from './pages/About';
6
+
7
+ Vue.use(VueRouter);
8
+ const basename = window?.blocklet?.prefix || '/';
9
+
10
+ export default new VueRouter({
11
+ base: basename,
12
+ routes: [
13
+ {
14
+ path: '/',
15
+ name: 'home',
16
+ component: Home,
17
+ },
18
+ {
19
+ path: '/about',
20
+ name: 'about',
21
+ component: About,
22
+ },
23
+ ],
24
+ });
@@ -0,0 +1,6 @@
1
+ module.exports = {
2
+ publicPath: process.env.PUBLIC_PATH || '/',
3
+ devServer: {
4
+ disableHostCheck: true,
5
+ },
6
+ };
package/CHANGELOG.md DELETED
@@ -1,62 +0,0 @@
1
- ## 0.2.5 (十一月 20, 2021)
2
-
3
- - feat: add vite + vue3 template
4
-
5
- ## 0.2.4 (October 28, 2021)
6
-
7
- - chore: bump deps to latest
8
-
9
- ## 0.2.3 (十一月 08, 2021)
10
-
11
- - chore: update README.md
12
- - chore: remove sharp
13
-
14
- ## 0.2.2 (十月 19, 2021)
15
-
16
- - chore: use blocklet/sdk WalletHandlers
17
-
18
- ## 0.2.1 (十月 15, 2021)
19
-
20
- - feat: use action-workflow
21
-
22
- ## 0.2.0 (九月 30, 2021)
23
-
24
- - feat: add npm script "upload"
25
- - fix #25
26
- - fix #22
27
- - fix #21
28
- - fix #24
29
- - fix #23
30
-
31
- ## 0.1.7 (八月 12, 2021)
32
-
33
- - feat: support generate did
34
- - fix: remove yarn command
35
-
36
- ## 0.1.6 (八月 06, 2021)
37
-
38
- - fix: [#8](https://github.com/blocklet/create-blocklet/issues/8)
39
-
40
- ## 0.1.5 (八月 03, 2021)
41
-
42
- - chore: enhanced use of blocklet command
43
-
44
- ## 0.1.4 (八月 02, 2021)
45
-
46
- - fix: add 'lib' to npm publish files
47
-
48
- ## 0.1.3 (八月 02, 2021)
49
-
50
- - feat: add react-dom-router
51
- - fix: #4
52
- - fix: #3
53
- - fix: #2
54
- - fix: #1
55
-
56
- ## 0.1.2 (七月 23, 2021)
57
-
58
- - fix: dapp npm bundle
59
-
60
- ## 0.1.1 (七月 23, 2021)
61
-
62
- - fix: add folder to npm publish