mirror of
https://github.com/nuintun/command-manager.git
synced 2025-06-14 08:36:57 +08:00
update files
This commit is contained in:
parent
a6205d498b
commit
8641a8d06c
@ -420,6 +420,7 @@ header [class*=" icon-"] {
|
|||||||
}
|
}
|
||||||
.ui-project-terminal {
|
.ui-project-terminal {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
|
color: #fff;
|
||||||
background-color: #181818;
|
background-color: #181818;
|
||||||
border-left: 1px dashed #ccc;
|
border-left: 1px dashed #ccc;
|
||||||
font-family: Consolas, sans-serif;
|
font-family: Consolas, sans-serif;
|
||||||
|
@ -10,6 +10,11 @@ var util = require('../../util');
|
|||||||
var Vue = require('../../vue/vue');
|
var Vue = require('../../vue/vue');
|
||||||
var Terminal = require('../../terminal');
|
var Terminal = require('../../terminal');
|
||||||
|
|
||||||
|
Terminal.defaultColors = {
|
||||||
|
bg: 'transparent',
|
||||||
|
fg: 'inherit'
|
||||||
|
};
|
||||||
|
|
||||||
const EMPTYPROJECT = {
|
const EMPTYPROJECT = {
|
||||||
name: '',
|
name: '',
|
||||||
path: '',
|
path: '',
|
||||||
@ -120,6 +125,8 @@ module.exports = Vue.component('app-main', {
|
|||||||
xterm.open();
|
xterm.open();
|
||||||
this.$els.terminal.appendChild(xterm.element);
|
this.$els.terminal.appendChild(xterm.element);
|
||||||
|
|
||||||
|
console.log(xterm);
|
||||||
|
|
||||||
test.forEach(function (line){ xterm.writeln(line); });
|
test.forEach(function (line){ xterm.writeln(line); });
|
||||||
|
|
||||||
window.AppRuntime[this.project.name] = {
|
window.AppRuntime[this.project.name] = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user