Created ssr demo and moved csr to a sub-folder + rebuild

This commit is contained in:
euvl
2017-06-20 09:01:27 +01:00
parent b652b4342c
commit ff27ef2049
36 changed files with 7762 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
import Vue from 'vue'
export default {
name: 'nuxt-link',
functional: true,
render (h, { data, children }) {
return h('router-link', data, children)
}
}