Skip to content

Commit

Permalink
Merge pull request #1820 from aeternity/feature/fix-link
Browse files Browse the repository at this point in the history
docs: fix link to vue@3 compatibility
  • Loading branch information
davidyuk authored May 12, 2023
2 parents 68edc25 + 9a138a7 commit 0dcf36c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ This package is expected to work in these environments:
[jest]: https://github.com/facebook/jest/issues/4422#issuecomment-770274099
[typescript]: README.md#typescript-projects
[vue-cli4]: README.md#vue-cli4
[vue-3]: README.md#vue-3
[vue-3]: README.md#vue3
[vite]: https://github.com/vitejs/vite/issues/9062#issuecomment-1202167352
2 changes: 1 addition & 1 deletion examples/browser/aepp/src/Contracts.vue
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default {
computed: mapState(['aeSdk']),
methods: {
async create() {
// Contract instance can't be in deep reactive https://github.com/aeternity/aepp-sdk-js/blob/develop/docs/README.md#vue-3
// Contract instance can't be in deep reactive https://github.com/aeternity/aepp-sdk-js/blob/develop/docs/README.md#vue3
this.contract = shallowRef(
await this.aeSdk.initializeContract({ sourceCode: this.contractSourceCode }),
);
Expand Down
2 changes: 1 addition & 1 deletion examples/browser/aepp/src/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const store = createStore({
state: {
address: undefined,
networkId: undefined,
// AeSdkAepp instance can't be in deep reactive https://github.com/aeternity/aepp-sdk-js/blob/develop/docs/README.md#vue-3
// AeSdkAepp instance can't be in deep reactive https://github.com/aeternity/aepp-sdk-js/blob/develop/docs/README.md#vue3
aeSdk: shallowReactive(new AeSdkAepp({
name: 'Simple æpp',
nodes: [
Expand Down

0 comments on commit 0dcf36c

Please sign in to comment.