JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5824
  • Score
    100M100P100Q115913F
  • License MIT

utlity for validating vue templates at compile time

Package Exports

  • vue-template-validator

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vue-template-validator) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

vue-template-validator

Catch common syntax errors in Vue.js templates at compile time.

var validate = require('vue-template-validator')

var warnings = validate(str)

warnings.forEach(function (msg) {
  console.log(msg)
})