cloak.js 209 B

12345678910
  1. var config = require('../config')
  2. module.exports = {
  3. bind: function () {
  4. var el = this.el
  5. this.vm.$once('hook:compiled', function () {
  6. el.removeAttribute(config.prefix + 'cloak')
  7. })
  8. }
  9. }