VueJS News
@vuejs_wire
281
subscribers
24
photos
332
links
News, tweets, events and other about VueJS.
Contacts:
@c01nd01r
Download Telegram
Join
VueJS News
281 subscribers
VueJS News
About SSR in Vue 2.6
by akryum, VueJS Amsterdam
https://slides.com/akryum/vue-26-ssr-revolution#/
Slides
Vue 2.6 SSR revolution
Part 1: What is SSR again? -- Part 2: New 2.6 features that change everything for data prefetching
VueJS News
VueJS News
VueJS News
VueJS News
✨
vuejs/vetur 0.16.0
Changelog:
https://github.com/vuejs/vetur/blob/master/CHANGELOG.md#0160--2019-02-18
GitHub
vuejs/vetur
Vue tooling for VS Code. Contribute to vuejs/vetur development by creating an account on GitHub.
VueJS News
VueJS News
✨
vuejs/vetur 0.16.0 Changelog: https://github.com/vuejs/vetur/blob/master/CHANGELOG.md#0160--2019-02-18
This media is not supported in your browser
VIEW IN TELEGRAM
VueJS News
Collection of slides from Vuejs Amsterdam 2019
https://gist.github.com/carestad/c344e7aef929f6fb92f25a97cd63d06f
Gist
Collection of slides from #vuejsamsterdam 2019
Collection of slides from #vuejsamsterdam 2019. GitHub Gist: instantly share code, notes, and snippets.
VueJS News
📄
Class API proposal (Vue 3)
https://github.com/vuejs/rfcs/blob/class-api/active-rfcs/0000-class-api.md
GitHub
rfcs/active-rfcs/0000-class-api.md at class-api · vuejs/rfcs
RFCs for substantial changes / feature additions to Vue core - vuejs/rfcs
VueJS News
✨
vuejs/vue v2.6.8
Changelog:
https://github.com/vuejs/vue/releases/tag/v2.6.8
GitHub
Release v2.6.8 · vuejs/vue
Bug Fixes
avoid compression of unicode sequences by using regexps (#9595) 7912f75, closes #9595 #9456
fix modifier parsing for dynamic argument with deep path (#9585) 060c3b9, closes #9585 #9577
f...
VueJS News
📄
[RFC] Global API Treeshaking
https://github.com/vuejs/rfcs/blob/treeshaking/active-rfcs/0000-global-api-treeshaking.md
GitHub
vuejs/rfcs
RFCs for substantial changes / feature additions to Vue core - vuejs/rfcs
VueJS News
✨
vuejs/vue-devtools v5.0.0
Changelog:
https://github.com/vuejs/vue-devtools/releases/tag/v5.0.0
GitHub
vuejs/vue-devtools
⚙️
Browser devtools extension for debugging Vue.js applications. - vuejs/vue-devtools
VueJS News
Slides from Vue Conf US by Evan You
https://docs.google.com/presentation/d/1EUUu_djeNWa8kRF_uQ0DWReSpoIQn2xXCLh5A-6YdLg/edit?usp=sharing
Google Docs
VueConf US 2019
State of the Vuenion VueConf US, Mar.2019 Tampa, Florida
VueJS News
📄
[RFC] Advanced Reactivity API
https://github.com/vuejs/rfcs/pull/22
GitHub
Advanced Reactivity API by yyx990803 · Pull Request #22 · vuejs/rfcs
Rendered
API for creating and observing standalone reactive values outside components.
import { state, value, computed, watch } from '@vue/observer'
// reactive object
// equivalen...
VueJS News
📄
[RFC] Dynamic Lifecycle Injection
https://github.com/vuejs/rfcs/pull/23
GitHub
Dynamic Lifecycle Injection by yyx990803 · Pull Request #23 · vuejs/rfcs
Rendered
import { onMounted, onUnmounted } from 'vue'
export default {
beforeCreate() {
onMounted(() => {
console.log('mounted')
})
onUn...
VueJS News
📄
[RFC] Functional and async components api change
https://github.com/vuejs/rfcs/pull/27
GitHub
Functional and async components API change by yyx990803 · Pull Request #27 · vuejs/rfcs
Functional components must be written as plain functions
Async component must be created via the createAsyncComponent API method
Rendered
VueJS News
📄
[RFC] Render function api change
https://github.com/vuejs/rfcs/pull/28
GitHub
Render function API change by yyx990803 · Pull Request #28 · vuejs/rfcs
Rendered
VueJS News
📄
[RFC] Attr fallthrough behavior
https://github.com/vuejs/rfcs/pull/26
GitHub
Attr fallthrough behavior by yyx990803 · Pull Request #26 · vuejs/rfcs
Disable implicit attribute fall-through to child component root element
Remove inheritAttrs option
Rendered
VueJS News
📄
[RFC] Optional props declaration
https://github.com/vuejs/rfcs/pull/25
GitHub
Optional props declaration by yyx990803 · Pull Request #25 · vuejs/rfcs
Rendered
VueJS News
📄
[RFC] v-model API change
https://github.com/vuejs/rfcs/pull/31
GitHub
v-model API change by yyx990803 · Pull Request #31 · vuejs/rfcs
Adjust v-model API when used on custom components.
This builds on top of #8 (Replace v-bind's .sync with a v-model argument).
Rendered
VueJS News
📄
[RFC] Custom Directive API Change
https://github.com/vuejs/rfcs/pull/32
GitHub
Custom Directive API Change by yyx990803 · Pull Request #32 · vuejs/rfcs
Re-design custom directive API so that it better aligns with component lifecycle
Custom directives usage on components will follow the same rules as discussed in the Attribute Fallthrough Behavio...