module.exports = function wxmlLoader(source) {
const options = this.getOptions();
if (!options) {
return source;
}
if (options.type === 'wx') {
return source;
}
if (options.type === 's') {
return source.replace(/wx:/g, (str) => {
return 's-'
});
}
return source;
}