如何更改 QEditor 插槽的宽度?

How to change the width of a QEditor slot?

我正在使用(可能误用 :|)QEditor 的工具栏来添加 <q-input>

  <q-editor
      model-value="undefined"
      v-model="note.text"
      @click="noteClicked(note)"
      @blur="noteBlurred(note)"
      :toolbar="[['title'], ['tags']]"
  >
    <template v-slot:title>
      <q-input model-value="undefined" v-model="note.title" autofocus dense />
    </template>
    <template v-slot:tags>
      <q-chip v-for="tag in note.tags" removable @remove="removeTag(note, tag)" color="primary" text-color="white" :label="tag">
      </q-chip>
    </template>
  </q-editor>

游乐场:https://codepen.io/WoJWoJ/pen/yLMKWvJ

我想使 title 插槽更宽 - 我该怎么做?

解决方案是添加 class 和 width: 30vw