@nuxt/kit 3.8.1 β 3.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +33 -2
- package/dist/index.mjs +1 -1
- package/package.json +17 -12
package/README.md
CHANGED
|
@@ -17,8 +17,9 @@ It provides a number of features that make it easy to build fast, SEO-friendly,
|
|
|
17
17
|
- Automatic routing with code-splitting
|
|
18
18
|
- State management
|
|
19
19
|
- SEO Optimization
|
|
20
|
-
-
|
|
21
|
-
-
|
|
20
|
+
- Auto imports
|
|
21
|
+
- Extensible with [180+ modules](https://nuxt.com/modules)
|
|
22
|
+
- Deployment to a variety of [hosting platforms](https://nuxt.com/deploy)
|
|
22
23
|
- ...[and much more](https://nuxt.com) π
|
|
23
24
|
|
|
24
25
|
## Getting Started
|
|
@@ -31,6 +32,36 @@ npx nuxi@latest init <my-project>
|
|
|
31
32
|
|
|
32
33
|
Discover also [nuxt.new](https://nuxt.new): Open a Nuxt starter on CodeSandbox, StackBlitz or locally to get up and running in a few seconds.
|
|
33
34
|
|
|
35
|
+
## Vue Development
|
|
36
|
+
|
|
37
|
+
Simple, intuitive and powerful, Nuxt lets you write Vue components in a way that makes sense. Every repetitive task is automated, so you can focus on writing your full-stack Vue application with confidence.
|
|
38
|
+
|
|
39
|
+
Example of an `app.vue`:
|
|
40
|
+
|
|
41
|
+
```vue
|
|
42
|
+
<script setup>
|
|
43
|
+
useSeoMeta({
|
|
44
|
+
title: 'Meet Nuxt',
|
|
45
|
+
description: 'The Intuitive Vue Framework.'
|
|
46
|
+
})
|
|
47
|
+
</script>
|
|
48
|
+
|
|
49
|
+
<template>
|
|
50
|
+
<div id="app">
|
|
51
|
+
<AppHeader />
|
|
52
|
+
<NuxtPage />
|
|
53
|
+
<AppFooter />
|
|
54
|
+
</div>
|
|
55
|
+
</template>
|
|
56
|
+
|
|
57
|
+
<style>
|
|
58
|
+
#app {
|
|
59
|
+
background-color: #020420;
|
|
60
|
+
color: #00DC82;
|
|
61
|
+
}
|
|
62
|
+
</style>
|
|
63
|
+
```
|
|
64
|
+
|
|
34
65
|
## Documentation
|
|
35
66
|
|
|
36
67
|
We highly recommend you take a look at the [Nuxt documentation](https://nuxt.com/docs) to level up. Itβs a great resource for learning more about the framework. It covers everything from getting started to advanced topics.
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxt/kit",
|
|
3
|
-
"version": "3.8.
|
|
4
|
-
"repository":
|
|
3
|
+
"version": "3.8.2",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "git+https://github.com/nuxt/nuxt.git",
|
|
7
|
+
"directory": "packages/kit"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://nuxt.com/docs/api/kit",
|
|
5
10
|
"description": "Toolkit for authoring modules and interacting with Nuxt",
|
|
6
11
|
"license": "MIT",
|
|
7
12
|
"type": "module",
|
|
@@ -21,28 +26,28 @@
|
|
|
21
26
|
"c12": "^1.5.1",
|
|
22
27
|
"consola": "^3.2.3",
|
|
23
28
|
"defu": "^6.1.3",
|
|
24
|
-
"globby": "^
|
|
29
|
+
"globby": "^14.0.0",
|
|
25
30
|
"hash-sum": "^2.0.0",
|
|
26
|
-
"ignore": "^5.
|
|
31
|
+
"ignore": "^5.3.0",
|
|
27
32
|
"jiti": "^1.21.0",
|
|
28
33
|
"knitwork": "^1.0.0",
|
|
29
34
|
"mlly": "^1.4.2",
|
|
30
35
|
"pathe": "^1.1.1",
|
|
31
36
|
"pkg-types": "^1.0.3",
|
|
32
|
-
"scule": "^1.
|
|
37
|
+
"scule": "^1.1.0",
|
|
33
38
|
"semver": "^7.5.4",
|
|
34
|
-
"ufo": "^1.3.
|
|
39
|
+
"ufo": "^1.3.2",
|
|
35
40
|
"unctx": "^2.3.1",
|
|
36
|
-
"unimport": "^3.
|
|
41
|
+
"unimport": "^3.5.0",
|
|
37
42
|
"untyped": "^1.4.0",
|
|
38
|
-
"@nuxt/schema": "3.8.
|
|
43
|
+
"@nuxt/schema": "3.8.2"
|
|
39
44
|
},
|
|
40
45
|
"devDependencies": {
|
|
41
|
-
"@types/hash-sum": "1.0.
|
|
42
|
-
"@types/lodash-es": "4.17.
|
|
43
|
-
"@types/semver": "7.5.
|
|
46
|
+
"@types/hash-sum": "1.0.2",
|
|
47
|
+
"@types/lodash-es": "4.17.11",
|
|
48
|
+
"@types/semver": "7.5.5",
|
|
44
49
|
"lodash-es": "4.17.21",
|
|
45
|
-
"nitropack": "2.
|
|
50
|
+
"nitropack": "2.8.0",
|
|
46
51
|
"unbuild": "latest",
|
|
47
52
|
"vite": "4.5.0",
|
|
48
53
|
"vitest": "0.33.0",
|