Browse Source

some commit

main
Alexey Velikiy 3 years ago
parent
commit
5a2ab7618e
  1. 3
      examples/vue/01-basic/01-basic/.browserslistrc
  2. 17
      examples/vue/01-basic/01-basic/.eslintrc.js
  3. 23
      examples/vue/01-basic/01-basic/.gitignore
  4. 24
      examples/vue/01-basic/01-basic/README.md
  5. 5
      examples/vue/01-basic/01-basic/babel.config.js
  6. 23
      examples/vue/01-basic/01-basic/package.json
  7. BIN
      examples/vue/01-basic/01-basic/public/favicon.ico
  8. 17
      examples/vue/01-basic/01-basic/public/index.html
  9. 25
      examples/vue/01-basic/01-basic/src/App.vue
  10. 33
      examples/vue/01-basic/01-basic/src/components/HelloWorld.vue
  11. 4
      examples/vue/01-basic/01-basic/src/main.js
  12. 8680
      examples/vue/01-basic/01-basic/yarn.lock

3
examples/vue/01-basic/01-basic/.browserslistrc

@ -0,0 +1,3 @@
> 1%
last 2 versions
not dead

17
examples/vue/01-basic/01-basic/.eslintrc.js

@ -0,0 +1,17 @@
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'plugin:vue/vue3-essential',
'eslint:recommended'
],
parserOptions: {
parser: 'babel-eslint'
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
}
}

23
examples/vue/01-basic/01-basic/.gitignore vendored

@ -0,0 +1,23 @@
.DS_Store
node_modules
/dist
# local env files
.env.local
.env.*.local
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

24
examples/vue/01-basic/01-basic/README.md

@ -0,0 +1,24 @@
# 01-basic
## Project setup
```
yarn install
```
### Compiles and hot-reloads for development
```
yarn serve
```
### Compiles and minifies for production
```
yarn build
```
### Lints and fixes files
```
yarn lint
```
### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).

5
examples/vue/01-basic/01-basic/babel.config.js

@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
}

23
examples/vue/01-basic/01-basic/package.json

@ -0,0 +1,23 @@
{
"name": "01-basic",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"core-js": "^3.6.5",
"vue": "^3.0.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.0.0"
}
}

BIN
examples/vue/01-basic/01-basic/public/favicon.ico

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

17
examples/vue/01-basic/01-basic/public/index.html

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title><%= htmlWebpackPlugin.options.title %></title>
</head>
<body>
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>

25
examples/vue/01-basic/01-basic/src/App.vue

@ -0,0 +1,25 @@
<template>
<HelloWorld msg="Welcome to Your Vue.js App"/>
</template>
<script>
import HelloWorld from './components/HelloWorld.vue'
export default {
name: 'App',
components: {
HelloWorld
}
}
</script>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>

33
examples/vue/01-basic/01-basic/src/components/HelloWorld.vue

@ -0,0 +1,33 @@
<template>
<div class="hello">
<h1>Basic chart</h1>
</div>
</template>
<script>
export default {
name: 'HelloWorld',
props: {
msg: String
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h3 {
margin: 40px 0 0;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: inline-block;
margin: 0 10px;
}
a {
color: #42b983;
}
</style>

4
examples/vue/01-basic/01-basic/src/main.js

@ -0,0 +1,4 @@
import { createApp } from 'vue'
import App from './App.vue'
createApp(App).mount('#app')

8680
examples/vue/01-basic/01-basic/yarn.lock

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save