Skip to content

Commit

Permalink
Update components default value
Browse files Browse the repository at this point in the history
  • Loading branch information
Binaryify committed Oct 13, 2021
1 parent d9c72b2 commit 01c48f3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Changelog
## 3.2.1 | 2021.10.13
## 3.2.2 | 2021.10.13
- Bugfix: components default value [#100](https://github.com/Binaryify/vue-qr/pull/100)

- Update `components` default value

## 3.2.0 | 2021.10.12
- Add `coomponents` params [#98](https://github.com/Binaryify/vue-qr/issues/98)
- Add `components` params [#98](https://github.com/Binaryify/vue-qr/issues/98)

## 3.1.0 | 2021.10.05
- Support Vite [#90](https://github.com/Binaryify/vue-qr/issues/90) [#96](https://github.com/Binaryify/vue-qr/issues/96)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,14 @@ type ComponentOptions = {

{
data: {
scale: 0.4,
scale: 1,
},
timing: {
scale: 0.5,
scale: 1,
protectors: false,
},
alignment: {
scale: 0.5,
scale: 1,
protectors: false,
},
cornerAlignment: {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-qr",
"version": "3.2.1",
"version": "3.2.2",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot --host 127.0.0.1",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules"
Expand Down
6 changes: 3 additions & 3 deletions src/packages/vue-qr.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,14 +109,14 @@ export default {
default: function(){
return {
data: {
scale: 0.4
scale: 1
},
timing: {
scale: 0.5,
scale: 1,
protectors: false
},
alignment: {
scale: 0.5,
scale: 1,
protectors: false
},
cornerAlignment: {
Expand Down

0 comments on commit 01c48f3

Please sign in to comment.