* Format a single token. * * @param {Object} token * @param {Vue} [vm] * @param {Boolean} [single] * @return {String}
(token, vm, single)
| 866 | */ |
| 867 | |
| 868 | function formatToken(token, vm, single) { |
| 869 | return token.tag ? token.oneTime && vm ? '"' + vm.$eval(token.value) + '"' : inlineFilters(token.value, single) : '"' + token.value + '"'; |
| 870 | } |
| 871 | |
| 872 | /** |
| 873 | * For an attribute with multiple interpolation tags, |
no test coverage detected