commit
163f2eadfb
9 changed files with 1867 additions and 0 deletions
@ -0,0 +1,24 @@ |
|||
# Logs |
|||
logs |
|||
*.log |
|||
npm-debug.log* |
|||
yarn-debug.log* |
|||
yarn-error.log* |
|||
pnpm-debug.log* |
|||
lerna-debug.log* |
|||
|
|||
node_modules |
|||
dist |
|||
dist-ssr |
|||
*.local |
|||
|
|||
# Editor directories and files |
|||
.vscode/* |
|||
!.vscode/extensions.json |
|||
.idea |
|||
.DS_Store |
|||
*.suo |
|||
*.ntvs* |
|||
*.njsproj |
|||
*.sln |
|||
*.sw? |
@ -0,0 +1,5 @@ |
|||
# Vue 3 + Vite |
|||
|
|||
This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more. |
|||
|
|||
Learn more about IDE Support for Vue in the [Vue Docs Scaling up Guide](https://vuejs.org/guide/scaling-up/tooling.html#ide-support). |
@ -0,0 +1,13 @@ |
|||
<!doctype html> |
|||
<html lang="en"> |
|||
<head> |
|||
<meta charset="UTF-8" /> |
|||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
|||
<title>Vite + Vue</title> |
|||
</head> |
|||
<body> |
|||
<div id="app"></div> |
|||
<script type="module" src="/src/main.js"></script> |
|||
</body> |
|||
</html> |
@ -0,0 +1,19 @@ |
|||
{ |
|||
"name": "vue2-demo", |
|||
"private": true, |
|||
"version": "0.0.0", |
|||
"type": "module", |
|||
"scripts": { |
|||
"dev": "vite", |
|||
"build": "vite build", |
|||
"preview": "vite preview" |
|||
}, |
|||
"dependencies": { |
|||
"vite-plugin-vue2": "^2.0.3", |
|||
"vue": "^2.7.16", |
|||
"vue-template-compiler": "^2.7.16" |
|||
}, |
|||
"devDependencies": { |
|||
"vite": "^4.5.5" |
|||
} |
|||
} |
File diff suppressed because it is too large
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1,13 @@ |
|||
<script> |
|||
|
|||
</script> |
|||
|
|||
<template> |
|||
<div> |
|||
HELLO |
|||
</div> |
|||
</template> |
|||
|
|||
<style scoped> |
|||
|
|||
</style> |
@ -0,0 +1,8 @@ |
|||
import Vue from 'vue' |
|||
|
|||
import App from './App.vue' |
|||
|
|||
new Vue({ |
|||
el: "#app", |
|||
render: (h) => h(App), |
|||
}); |
@ -0,0 +1,7 @@ |
|||
import { defineConfig } from 'vite' |
|||
import { createVuePlugin } from 'vite-plugin-vue2' |
|||
|
|||
// https://vitejs.dev/config/
|
|||
export default defineConfig({ |
|||
plugins: [createVuePlugin()], |
|||
}) |
Loading…
Reference in new issue