- Import emails from a list to a DB
- Create Template Emails - Options Email
This commit is contained in:
@@ -5,14 +5,17 @@ import { tools } from '../../store/Modules/tools'
|
||||
import { toolsext } from '@src/store/Modules/toolsext'
|
||||
|
||||
import { QEditor } from 'quasar'
|
||||
import { CTitleBanner } from '../CTitleBanner'
|
||||
|
||||
@Component({
|
||||
name: 'CMyEditor'
|
||||
name: 'CMyEditor',
|
||||
components: { CTitleBanner }
|
||||
})
|
||||
|
||||
export default class CMyEditor extends Vue {
|
||||
public $q
|
||||
public editor = null
|
||||
@Prop({ required: false, default: '' }) public title
|
||||
@Prop({ required: true }) public value
|
||||
@Prop({ required: false, default: '' }) public myclass
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
<template>
|
||||
<div>
|
||||
<CTitleBanner :title="title"></CTitleBanner>
|
||||
<form
|
||||
autocorrect="off"
|
||||
autocapitalize="off"
|
||||
@@ -19,9 +20,11 @@
|
||||
toolbar-toggle-color="yellow-8"
|
||||
toolbar-bg="primary"
|
||||
:toolbar="toolbarcomp"
|
||||
debounce="500"
|
||||
:fonts="myfonts"
|
||||
@input="changeval"
|
||||
@paste.native="evt => pasteCapture(evt)"
|
||||
@keyup.enter.stop
|
||||
v-model="myvalue">
|
||||
</q-editor>
|
||||
</form>
|
||||
|
||||
Reference in New Issue
Block a user