Reactjs
August 18, 2018
ADVANCED GUIDES: Typechecking With PropTypes
Typechecking With PropTypes Note: React.PropTypes has moved into a different package since React v15.5. Please use theprop-types library…
Reactjs
August 18, 2018
ADVANCED GUIDES: Optimizing Performance
Optimizing Performance Internally, React uses several clever techniques to minimize the number of costly DOM…
Vuejs
August 18, 2018
List Rendering
Render danh sách Map một mảng thành các phần tử web với v-for Một số tài…
Reactjs
August 18, 2018
MAIN CONCEPTS: Hello World
Hello World The smallest React example looks like this: ReactDOM.render( <h1>Hello, world!</h1>, document.getElementById('root') ); It…
Reactjs
August 18, 2018
ADVANCED GUIDES: Strict Mode
Strict Mode StrictMode is a tool for highlighting potential problems in an application. Like Fragment, StrictMode does not render…
Vuejs
August 18, 2018
Components
Component Component là gì? Component là một trong những tính năng mạnh nhất của Vue.…
Vuejs
August 18, 2018
TypeScript Support
TypeScript Support In Vue 2.5.0+ we have greatly improved our type declarations to work with…
Design Patterns PHP
September 26, 2018
1 Creational
In software engineering, creational design patterns are design patterns that deal with object creation mechanisms,…
Reactjs
August 18, 2018
ADVANCED GUIDES: Error Boundaries
Error Boundaries In the past, JavaScript errors inside components used to corrupt React’s internal state…