File tree Expand file tree Collapse file tree 13 files changed +6188
-1
lines changed Expand file tree Collapse file tree 13 files changed +6188
-1
lines changed Original file line number Diff line number Diff line change 1- ! docs / .vitepress
1+ docs
22dist
Original file line number Diff line number Diff line change 1+ .DS_Store
2+ node_modules
3+ /dist
4+
5+
6+ # local env files
7+ .env.local
8+ .env. * .local
9+
10+ # Log files
11+ npm-debug.log *
12+ yarn-debug.log *
13+ yarn-error.log *
14+ pnpm-debug.log *
15+
16+ # Editor directories and files
17+ .idea
18+ .vscode
19+ * .suo
20+ * .ntvs *
21+ * .njsproj
22+ * .sln
23+ * .sw ?
Original file line number Diff line number Diff line change 1+ # docs
2+
3+ ## Project setup
4+ ```
5+ yarn install
6+ ```
7+
8+ ### Compiles and hot-reloads for development
9+ ```
10+ yarn serve
11+ ```
12+
13+ ### Compiles and minifies for production
14+ ```
15+ yarn build
16+ ```
17+
18+ ### Lints and fixes files
19+ ```
20+ yarn lint
21+ ```
22+
23+ ### Customize configuration
24+ See [ Configuration Reference] ( https://cli.vuejs.org/config/ ) .
Original file line number Diff line number Diff line change 1+ module . exports = {
2+ presets : [
3+ '@vue/cli-plugin-babel/preset'
4+ ]
5+ }
Original file line number Diff line number Diff line change 1+ {
2+ "compilerOptions" : {
3+ "target" : " es5" ,
4+ "module" : " esnext" ,
5+ "baseUrl" : " ./" ,
6+ "moduleResolution" : " node" ,
7+ "paths" : {
8+ "@/*" : [
9+ " src/*"
10+ ]
11+ },
12+ "lib" : [
13+ " esnext" ,
14+ " dom" ,
15+ " dom.iterable" ,
16+ " scripthost"
17+ ]
18+ }
19+ }
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " docs" ,
3+ "version" : " 0.1.0" ,
4+ "private" : true ,
5+ "scripts" : {
6+ "serve" : " vue-cli-service serve" ,
7+ "build" : " vue-cli-service build" ,
8+ "lint" : " vue-cli-service lint"
9+ },
10+ "dependencies" : {
11+ "core-js" : " ^3.8.3" ,
12+ "vue" : " ^2.6.14"
13+ },
14+ "devDependencies" : {
15+ "@babel/core" : " ^7.12.16" ,
16+ "@babel/eslint-parser" : " ^7.12.16" ,
17+ "@vue/cli-plugin-babel" : " ~5.0.0" ,
18+ "@vue/cli-plugin-eslint" : " ~5.0.0" ,
19+ "@vue/cli-service" : " ~5.0.0" ,
20+ "eslint" : " ^7.32.0" ,
21+ "eslint-plugin-vue" : " ^8.0.3" ,
22+ "vue-template-compiler" : " ^2.6.14"
23+ },
24+ "eslintConfig" : {
25+ "root" : true ,
26+ "env" : {
27+ "node" : true
28+ },
29+ "extends" : [
30+ " plugin:vue/essential" ,
31+ " eslint:recommended"
32+ ],
33+ "parserOptions" : {
34+ "parser" : " @babel/eslint-parser"
35+ },
36+ "rules" : {}
37+ },
38+ "browserslist" : [
39+ " > 1%" ,
40+ " last 2 versions" ,
41+ " not dead"
42+ ]
43+ }
Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="">
3+ < head >
4+ < meta charset ="utf-8 ">
5+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
6+ < meta name ="viewport " content ="width=device-width,initial-scale=1.0 ">
7+ < link rel ="icon " href ="<%= BASE_URL %>favicon.ico ">
8+ < title > < %= htmlWebpackPlugin.options.title %> </ title >
9+ </ head >
10+ < body >
11+ < noscript >
12+ < strong > We're sorry but < %= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</ strong >
13+ </ noscript >
14+ < div id ="app "> </ div >
15+ <!-- built files will be auto injected -->
16+ </ body >
17+ </ html >
Original file line number Diff line number Diff line change 1+ <template >
2+ <vue-number v-bind =" config" v-model =" price" />
3+ </template >
4+
5+ <script >
6+ export default {
7+ data () {
8+ return {
9+ price: 123456.86 ,
10+ config: {
11+ prefix: ' $' ,
12+ // min: 0,
13+ }
14+ }
15+ },
16+ }
17+ </script >
You can’t perform that action at this time.
0 commit comments