fix: add an example of markdown embedded in the form #138

This commit is contained in:
vben
2020-12-23 21:43:06 +08:00
parent 10cd4fcdff
commit 7db0c5c49f
16 changed files with 463 additions and 354 deletions

View File

@@ -15,16 +15,11 @@
"noUnusedLocals": true,
"noUnusedParameters": true,
"experimentalDecorators": true,
"lib": [
"dom",
"esnext"
],
"lib": ["dom", "esnext"],
"incremental": true,
"skipLibCheck": true,
"paths": {
"/@/*": [
"src/*"
]
"/@/*": ["src/*"]
}
},
"plugins": [
@@ -32,15 +27,6 @@
"name": "@vuedx/typescript-plugin-vue"
}
],
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue"
],
"exclude": [
"node_modules",
"dist",
"**/*.js"
]
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
"exclude": ["node_modules", "dist", "**/*.js"]
}