Skip to content

Commit

Permalink
feat:#1 使用Nuxt3-rc8初始化项目
Browse files Browse the repository at this point in the history
  • Loading branch information
terwer committed Aug 28, 2022
1 parent bad6ff7 commit 50fc927
Show file tree
Hide file tree
Showing 7 changed files with 4,451 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.idea
.vercel
.nuxt
node_modules
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# jvue-front
Next version for jvue-front using [nuxt3](https://github.com/nuxt/framework) which supports Metaweblog API.

We will start develop after Nuxt3 **stabe*** release,please wait...
We will start develop after Nuxt3 **stabe*** release,please wait...

## build

```bash
vercel dev
```
5 changes: 5 additions & 0 deletions app.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<template>
<div>
<NuxtWelcome />
</div>
</template>
6 changes: 6 additions & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { defineNuxtConfig } from 'nuxt'

// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({

})
12 changes: 12 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview"
},
"devDependencies": {
"nuxt": "3.0.0-rc.8"
}
}
4 changes: 4 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
// https://v3.nuxtjs.org/concepts/typescript
"extends": "./.nuxt/tsconfig.json"
}
4,413 changes: 4,413 additions & 0 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 50fc927

Please sign in to comment.