JM_KA/packages/hot-update-tools/test/TestEnvAli.js
2022-08-31 09:48:48 +08:00

15 lines
319 B
JavaScript

'use strict';
var Fs = require('fire-fs');
var Path = require('fire-path');
let url = Editor.url(window.packageRoot + "panel/TestEnvAli.html", 'utf8');
module.exports = {
init() {
Vue.component('TestEnvAli', {
props: ['data'],
template: Fs.readFileSync(url),
});
},
};