diff --git a/README.md b/README.md index 1512fc9..f142067 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,6 @@ ## Use Vue Components to author HTML/nunjucks/liquid layouts in 11ty SSG -I have wanted to use Vue components directly in my markup for a while. This is easily done by exporting Vue Components as Native Web Components (.ce.vue) but then you deal with other issues... some of these are dealt with in lit's 11ty plugin setup.. - -I like the idea of just writing the components in and having an 11ty plugin add the vue scripts as necessary. Some of these can get prerendered and not hydrated, some can get hydrated and you can just use async components and determine rules for when the component is fetched. - -Now, we have a fully capable partial hydration setup and Fully functional vue components in SFC format that I can simply write as if they were HTML while I am composing layouts and pages. The best part is, I can use slotting to write embedded markup inside components. I can even use other components inside my components just by adding the Vue elements.