Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tarkhov committed Sep 20, 2020
1 parent e89c5ef commit b2bc2f8
Show file tree
Hide file tree
Showing 44 changed files with 14,168 additions and 169 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# Vue string directives

Change form input value dynamically using Vue directives.
18 changes: 18 additions & 0 deletions demo/.browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# https://vuejs.org/v2/guide/installation.html#Compatibility-Note
# https://caniuse.com/es5
ie 10
edge 12
firefox 21
chrome 23
safari 6
opera 15
ios_saf 6
android 4.4
op_mob 46
and_chr 85
and_ff 79
and_uc 12.12
samsung 4
and_qq 10.4
baidu 7.12
kaios 2.5
17 changes: 17 additions & 0 deletions demo/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'plugin:vue/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 changes: 23 additions & 0 deletions demo/.gitignore
Original file line number Diff line number Diff line change
@@ -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 changes: 24 additions & 0 deletions demo/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# docs

## Project setup
```
npm install
```

### Compiles and hot-reloads for development
```
npm run serve
```

### Compiles and minifies for production
```
npm run build
```

### Lints and fixes files
```
npm run lint
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
5 changes: 5 additions & 0 deletions demo/babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
}
Loading

0 comments on commit b2bc2f8

Please sign in to comment.