├── .gitignore ├── CHANGELOG.md ├── COMPATIBLE.md ├── LICENSE ├── README.md ├── package.json ├── screenshot ├── 717e14eb59dd44dea62d6a0b7549abfd.png ├── 77o3g5fhjovtu725vm8z42lemqt8zwli.png ├── em64p7w8wlqtt0rsjop0jjeywx29m25w.png ├── g7v4su56sx5g95qipmzh0k1hknj6fsa7.png ├── ggmr7dg23fjj3mqndyays04ok93adj3n.png └── yd89wbdji196ixtwzgzamw37fbein1ia.png ├── src ├── client │ ├── components │ │ ├── loadResources.ts │ │ └── setupPlugin.ts │ ├── composables │ │ ├── index.ts │ │ └── loadPlugin.ts │ ├── config.ts │ └── index.ts ├── node │ ├── index.ts │ ├── plugin.ts │ └── utils.ts └── shared │ ├── index.ts │ └── options.ts ├── tsconfig.base.json ├── tsconfig.build.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COMPATIBLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/COMPATIBLE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/package.json -------------------------------------------------------------------------------- /screenshot/717e14eb59dd44dea62d6a0b7549abfd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/screenshot/717e14eb59dd44dea62d6a0b7549abfd.png -------------------------------------------------------------------------------- /screenshot/77o3g5fhjovtu725vm8z42lemqt8zwli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/screenshot/77o3g5fhjovtu725vm8z42lemqt8zwli.png -------------------------------------------------------------------------------- /screenshot/em64p7w8wlqtt0rsjop0jjeywx29m25w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/screenshot/em64p7w8wlqtt0rsjop0jjeywx29m25w.png -------------------------------------------------------------------------------- /screenshot/g7v4su56sx5g95qipmzh0k1hknj6fsa7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/screenshot/g7v4su56sx5g95qipmzh0k1hknj6fsa7.png -------------------------------------------------------------------------------- /screenshot/ggmr7dg23fjj3mqndyays04ok93adj3n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/screenshot/ggmr7dg23fjj3mqndyays04ok93adj3n.png -------------------------------------------------------------------------------- /screenshot/yd89wbdji196ixtwzgzamw37fbein1ia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/screenshot/yd89wbdji196ixtwzgzamw37fbein1ia.png -------------------------------------------------------------------------------- /src/client/components/loadResources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/src/client/components/loadResources.ts -------------------------------------------------------------------------------- /src/client/components/setupPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/src/client/components/setupPlugin.ts -------------------------------------------------------------------------------- /src/client/composables/index.ts: -------------------------------------------------------------------------------- 1 | export * from './loadPlugin.js' -------------------------------------------------------------------------------- /src/client/composables/loadPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/src/client/composables/loadPlugin.ts -------------------------------------------------------------------------------- /src/client/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/src/client/config.ts -------------------------------------------------------------------------------- /src/client/index.ts: -------------------------------------------------------------------------------- 1 | export * from './composables/index.js' -------------------------------------------------------------------------------- /src/node/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./plugin.js"; -------------------------------------------------------------------------------- /src/node/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/src/node/plugin.ts -------------------------------------------------------------------------------- /src/node/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/src/node/utils.ts -------------------------------------------------------------------------------- /src/shared/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./options.js"; -------------------------------------------------------------------------------- /src/shared/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/src/shared/options.ts -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rqh656418510/vuepress-plugin-readmore-popular-next/HEAD/tsconfig.json --------------------------------------------------------------------------------