From aa999b97f4abef443b254e97870405adfc4827f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nazar=C3=A9=20da=20Piedade?= Date: Fri, 2 Feb 2024 21:20:13 +0100 Subject: [PATCH 1/2] docs: recommend `petite-vue` for no build approaches --- src/guide/quick-start.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/guide/quick-start.md b/src/guide/quick-start.md index 61af5dd32f..6b3ece7fcc 100644 --- a/src/guide/quick-start.md +++ b/src/guide/quick-start.md @@ -365,6 +365,8 @@ Import Maps is a relatively new browser feature. Make sure to use a browser with :::warning Notes on Production Use The examples so far are using the development build of Vue - if you intend to use Vue from a CDN in production, make sure to check out the [Production Deployment Guide](/guide/best-practices/production-deployment#without-build-tools). + +While it is possible to use Vue without a build system, we consider it to be a little too much for minimalist approaches, so we recommend giving a chance to the [`vuejs/petite-vue`](https://github.com/vuejs/petite-vue) that could suit better on the context where [`jquery/jquery`](https://github.com/jquery/jquery) (in the past) or [`alpinejs/alpine`](https://github.com/alpinejs/alpine) (in the present) would be more indicated. ::: ### Splitting Up the Modules {#splitting-up-the-modules} From 58e17dbc641417e3a7045efb3ffb54b29773d4de Mon Sep 17 00:00:00 2001 From: Ben Hong Date: Thu, 22 Feb 2024 09:36:02 -0800 Subject: [PATCH 2/2] docs: update phrasing on petite vue recommendation --- src/guide/quick-start.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/quick-start.md b/src/guide/quick-start.md index 6b3ece7fcc..1e4c881e3e 100644 --- a/src/guide/quick-start.md +++ b/src/guide/quick-start.md @@ -366,7 +366,7 @@ Import Maps is a relatively new browser feature. Make sure to use a browser with :::warning Notes on Production Use The examples so far are using the development build of Vue - if you intend to use Vue from a CDN in production, make sure to check out the [Production Deployment Guide](/guide/best-practices/production-deployment#without-build-tools). -While it is possible to use Vue without a build system, we consider it to be a little too much for minimalist approaches, so we recommend giving a chance to the [`vuejs/petite-vue`](https://github.com/vuejs/petite-vue) that could suit better on the context where [`jquery/jquery`](https://github.com/jquery/jquery) (in the past) or [`alpinejs/alpine`](https://github.com/alpinejs/alpine) (in the present) would be more indicated. +While it is possible to use Vue without a build system, an alternative approach to consider is using [`vuejs/petite-vue`](https://github.com/vuejs/petite-vue) that could better suit the context where [`jquery/jquery`](https://github.com/jquery/jquery) (in the past) or [`alpinejs/alpine`](https://github.com/alpinejs/alpine) (in the present) might be used instead. ::: ### Splitting Up the Modules {#splitting-up-the-modules}