Skip to content

Commit 0dcf36c

Browse files
authored
Merge pull request #1820 from aeternity/feature/fix-link
docs: fix link to vue@3 compatibility
2 parents 68edc25 + 9a138a7 commit 0dcf36c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/compatibility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ This package is expected to work in these environments:
2525
[jest]: https://github.com/facebook/jest/issues/4422#issuecomment-770274099
2626
[typescript]: README.md#typescript-projects
2727
[vue-cli4]: README.md#vue-cli4
28-
[vue-3]: README.md#vue-3
28+
[vue-3]: README.md#vue3
2929
[vite]: https://github.com/vitejs/vite/issues/9062#issuecomment-1202167352

examples/browser/aepp/src/Contracts.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export default {
104104
computed: mapState(['aeSdk']),
105105
methods: {
106106
async create() {
107-
// Contract instance can't be in deep reactive https://github.com/aeternity/aepp-sdk-js/blob/develop/docs/README.md#vue-3
107+
// Contract instance can't be in deep reactive https://github.com/aeternity/aepp-sdk-js/blob/develop/docs/README.md#vue3
108108
this.contract = shallowRef(
109109
await this.aeSdk.initializeContract({ sourceCode: this.contractSourceCode }),
110110
);

examples/browser/aepp/src/store.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const store = createStore({
1010
state: {
1111
address: undefined,
1212
networkId: undefined,
13-
// AeSdkAepp instance can't be in deep reactive https://github.com/aeternity/aepp-sdk-js/blob/develop/docs/README.md#vue-3
13+
// AeSdkAepp instance can't be in deep reactive https://github.com/aeternity/aepp-sdk-js/blob/develop/docs/README.md#vue3
1414
aeSdk: shallowReactive(new AeSdkAepp({
1515
name: 'Simple æpp',
1616
nodes: [

0 commit comments

Comments
 (0)