DEV Community

sunny2288
sunny2288

Posted on

 

It is good for studying Vue.js! A tutorial for implementing UI components and interactions is compiled - Vue.js Examples

We introduce the Vue.js Examples which summarizes tutorials and resources that implement various UI components and interactions in Vue.js.

In addition to the layout of pages and applications, scroll contents, card-type components, overlays, forms and searches, navigation and pagination, Lazy Load, and so on, all the things you see recently are available.

vuejsexamples

Vue.js Examples

Tutorials and resources are organized by category. It is designed to allow you to see demonstrations that can confirm the operation and code at the time of implementation.

layout

layout

scroll

scroll

responsive

responsive

cards

cards

material-design

Material Design

overlay

overlay

SVG

SVG

form

form

search

search

navigation

navigation

switch

switch

Lazy Load

Lazy Load

source: https://coliss.com/articles/build-websites/operation/javascript/vuejs-examples.html

Top comments (0)

11 Tips That Make You a Better Typescript Programmer

typescript

1 Think in {Set}

Type is an everyday concept to programmers, but it’s surprisingly difficult to define it succinctly. I find it helpful to use Set as a conceptual model instead.

#2 Understand declared type and narrowed type

One extremely powerful typescript feature is automatic type narrowing based on control flow. This means a variable has two types associated with it at any specific point of code location: a declaration type and a narrowed type.

#3 Use discriminated union instead of optional fields

...

Read the whole post now!