ele+vue簡單操作
綁定值和字符串拼接:
1、:title="`字符串${xx}`"
2、:title="'字符串' + xx"
3.異步回調
setTimeReflush: function () { var _this = this; return new Promise(function (resolve, reject) { $.post(BaseUrl + '', function (d) { resolve(d.data) }); }) },
綁定值和字符串拼接:
1、:title="`字符串${xx}`"
2、:title="'字符串' + xx"
3.異步回調
setTimeReflush: function () { var _this = this; return new Promise(function (resolve, reject) { $.post(BaseUrl + '', function (d) { resolve(d.data) }); }) },