We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22456e8 commit 3eee0b9Copy full SHA for 3eee0b9
docs-source/book/introduction/README.md
@@ -97,6 +97,7 @@ To do this we simply call the Vue.attach() static method and pass the selector o
97
```java
98
public class RootGwtApp implements EntryPoint {
99
public void onModuleLoad() {
100
+ VueGWT.init();
101
SimpleLinkComponent simpleLinkComponent = Vue.attach("#simpleLinkComponentContainer", SimpleLinkComponent.class);
102
}
103
@@ -505,6 +506,7 @@ You won't need to pass the class of your `VueComponent` to the `components` attr
505
506
507
508
509
510
// Register TodoComponent globally
511
Vue.component("todo", TodoComponent.class);
512
0 commit comments