Owen Tsai
Owen Tsai
Well, on my end: 1. The problem doesn't always occur. Sometimes things work perfectly fine, the module is able to pick up changes and reload the view with compiled style...
Go ahead and check [this config option](https://github.com/kentcdodds/mdx-bundler#mdxoptions), you can load up remark and rehype plugins for generating TOC. If I remembered right, `remark-extract-toc` is able to extract TOC (and export...
一个可行的方案是将外部请求的文件(`index.js`)放置于自己的项目中以供请求,或者直接将里面的内容插入到 HTML。该 script 的作用是创建一个包含所有图标 symbol 的 svg 元素并插入 DOM,从而使 Icon 组件可以通过 `` 的方式消费。 进行封装,例如 vue 场景下: ```vue const { name } = defineProps() const fullName = computed(() => `t-icon-${name}`) ```...