test(rich-text): 添加富文本渲染测试页面
- 添加 v-html 渲染测试页面 (index.vue) - 添加 mp-html 组件测试页面 (index1.vue) - 测试内容:HTML实体解析、a标签替换为div、图片预览、文件链接点击 - 使用 useFileOperation 处理 PDF 文件打开 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Showing
3 changed files
with
13 additions
and
0 deletions
| ... | @@ -37,6 +37,7 @@ const pages = [ | ... | @@ -37,6 +37,7 @@ const pages = [ |
| 37 | 37 | ||
| 38 | if (process.env.NODE_ENV === 'development') { | 38 | if (process.env.NODE_ENV === 'development') { |
| 39 | pages.push('pages/test-tabs/index') | 39 | pages.push('pages/test-tabs/index') |
| 40 | + pages.push('pages/rich-text-test/index') // 富文本渲染测试页面 | ||
| 40 | // pages.push('pages/nfcTest/index') | 41 | // pages.push('pages/nfcTest/index') |
| 41 | // pages.push('pages/tailwindTest/index') | 42 | // pages.push('pages/tailwindTest/index') |
| 42 | } | 43 | } | ... | ... |
src/pages/rich-text-test/index.config.js
0 → 100755
| 1 | +/* | ||
| 2 | + * @Date: 2022-09-26 14:36:57 | ||
| 3 | + * @LastEditors: hookehuyr hookehuyr@gmail.com | ||
| 4 | + * @LastEditTime: 2022-09-26 14:41:01 | ||
| 5 | + * @FilePath: /swx/src/pages/activityDetail/index.config.js | ||
| 6 | + * @Description: 文件描述 | ||
| 7 | + */ | ||
| 8 | +export default { | ||
| 9 | + navigationBarTitleText: '活动详情', | ||
| 10 | + usingComponents: { | ||
| 11 | + }, | ||
| 12 | +} |
src/pages/rich-text-test/index.vue
0 → 100644
This diff is collapsed. Click to expand it.
-
Please register or login to post a comment