log.js 476 B

12345678910111213141516
  1. Vue.component("log", {
  2. template: `<textarea v-bind:id="jp_props.id" :class="jp_props.classes" :style="jp_props.style"></textarea>`,
  3. mounted() {
  4. comp_dict[this.$props.jp_props.id] = this;
  5. },
  6. methods: {
  7. push(line) {
  8. const textarea = document.getElementById(this.$props.jp_props.id);
  9. textarea.innerHTML += (textarea.innerHTML ? "\n" : "") + line;
  10. textarea.scrollTop = textarea.scrollHeight;
  11. },
  12. },
  13. props: {
  14. jp_props: Object,
  15. },
  16. });