mktcms 0.1.17 → 0.1.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mktcms",
3
3
  "configKey": "mktcms",
4
- "version": "0.1.17",
4
+ "version": "0.1.18",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -37,6 +37,11 @@ async function saveContent() {
37
37
  v-else-if="path.endsWith('.csv')"
38
38
  v-model:content="content"
39
39
  />
40
+ <textarea
41
+ v-else-if="path.endsWith('.txt')"
42
+ v-model="content"
43
+ style="width: 100%; height: 400px; font-family: monospace; resize: vertical;"
44
+ />
40
45
  <button
41
46
  style="margin-top: 10px;"
42
47
  @click="saveContent"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mktcms",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "description": "Simple CMS module for Nuxt",
5
5
  "repository": "mktcode/mktcms",
6
6
  "license": "MIT",