Skip to content
Showing 1-1 of 1 item.
@renovate
Admin 22/11/2021 12:20
Tự học Vue.js tập 2 - Application & Component Instances

Tạo một Application Instance Mỗi ứng dụng Vue bắt đầu bởi việc tạo một application instance bằng hàm createApp const app = Vue.createApp({ /* options */ }) Application instance này dùng để đăng ký 'globals' sau đó sẽ được component trong ứng dụng sử dụng. const app = Vue.createApp({}) app.component('SearchInput', SearchInputComponent) app.directive('focus', FocusDirective) app.use(LocalePlugin) Hầu hết các phương thức của...

Cơ bản vuex tự học