This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pub trait Point{ | |
| type Identifier: PartialEq; | |
| fn id(&self) -> Self::Identifier; | |
| } | |
| #[derive(Debug)] | |
| pub struct Connection<T: Point> { | |
| pub to: T | |
| } |
- Vue style guide
- Vue school
- Tailwind, a friendly style framework
- Getting started
- Creating custom checkbox
- Top 10 articles (2017/10)
- Ream: Universal framework for vue
- An Introduction to VuePress. Want a quick, SEO-friendly static documentation website with Vue.js support? Look no further than VuePress.
- [Understanding vue-router](https://blog.webf.zone/vue-router
- Avoid * imports
- Multiedit next occurrence
Alt + Jon win and linux orCtrl + Gon mac - Multicursor:
ctrl + ctrl holdwhile move cursor with keys up or down. - The feature that allows you to back after click and follow a reference in the code is called
navigate backand the opposite isnavigate forward. - Prettier on save: https://medium.com/@netczuk/even-faster-code-formatting-using-eslint-22b80d061461
const myVars = {
myVarA: 'aaaaa',
myVarB: 'bbbbb'
};
const { myVarA: a, myVarB: b } = myVars;