摘要:
Vue models, v-model, allow us to use two-way data binding, which is useful in some cases such as forms. This lesson shows how to use it by creating a 阅读全文
摘要:
Components can specify requirements for its props, such as the types you’ve already seen. If a requirement isn’t met, Vue will warn you in the browser 阅读全文
摘要:
We mainly need to modify our Model and REST endpoint code to enable swagger Document. model/Book.java: By doing this, we can get each model defination 阅读全文
摘要:
Vue provide some shortcut methods: @mousemove.stop is comparable to e.stopPropogation() @mousemove.prevent this is like e.preventDefault() @submit.pre 阅读全文
摘要:
So what is a Bean, in JavaEE, any class expect Entity are Bean. One usefully thing in Bean is Dependency injection. Just like Angular, it is just a Cl 阅读全文
摘要:
This lesson shows how you can extend and reuse logic in Vue components using TypeScript inheritance. It will take you through extending a component, i 阅读全文
摘要:
When we create Entity and Respority, we also need to do validations to protect our data. In Java, validations are built-in, using decorators. For Type 阅读全文