JM_KA/packages/hot-update-tools/test/TestEnvAli.js

15 lines
319 B
JavaScript
Raw Normal View History

2022-08-31 01:48:48 +00:00
'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),
});
},
};