Vitepress初始化配置的样式,写法,序,文本,vitepress乱序的问题,vitepress的index.md文件没有出现的问题如何解决,细节问题,----必须带

简介: Vitepress初始化配置的样式,写法,序,文本,vitepress乱序的问题,vitepress的index.md文件没有出现的问题如何解决,细节问题,----必须带

今天在使用 vitepress出现了乱序的问题

这里该怎样解决:

config的配置文件:

export default {
    title: '文档', // 站点的标题
    description: '第一个 VitePress',// 站点的描述,
    themeConfig: {
        nav: [
            { text: 'Home', link: '/' },
            { text: 'Examples', link: '/markdown-examples' }
        ],
        sidebar: [
            {
                text: 'Examples',
                items: [
                    { text: 'Markdown Examples', link: '/markdown-examples' },
                    { text: 'Runtime API Examples', link: '/api-examples' }
                ]
            }
        ],
        socialLinks: [
            { icon: 'github', link: 'https://github.com/vuejs/vitepress' }
        ]
        ,
        footer: {
            copyright: "Copyright "
        }
    }
}

自己index.md里的内容,不显色,这里出错的错误是没有加---

正确的写法:一定要加---,否则是乱序的,自己粗心导致的,这里参考了大佬白小纯纯纯的资料

---
layout: home
 
hero:
  name: 名称
  text: 文本
  tagline: 标语
  actions:
    - theme: brand
      text: 开始
      link: /guide/what-is-vitepress
    - theme: alt
      text: View on GitHub
      link: https://github.com/vuejs/vitepress
 
features:
  - icon: ⚡️
    title: Vite, The DX that can't be beat
    details: Lorem ipsum...
  - icon: 🖖
    title: Power of Vue meets Markdown
    details: Lorem ipsum...
  - icon: 🛠️
    title: Simple and minimal, always
    details: Lorem ipsum...
---
<style>
    :root {
  --vp-home-hero-name-color: transparent;
  --vp-home-hero-name-background: -webkit-linear-gradient(120deg, #bd34fe, #41d1ff);
}
</style>

最终样式:


相关文章
|
6月前
|
JavaScript 前端开发
autox.js中if和while的用法区别和差异
autox.js中if和while的用法区别和差异
|
JavaScript
js基础笔记学习240通过属性读取样式1
js基础笔记学习240通过属性读取样式1
76 0
js基础笔记学习240通过属性读取样式1
|
JavaScript
js基础笔记学习229元素得修改2
js基础笔记学习229元素得修改2
81 0
js基础笔记学习229元素得修改2
|
JavaScript
js基础笔记学习228元素得修改1
js基础笔记学习228元素得修改1
72 0
js基础笔记学习228元素得修改1
|
JavaScript
js基础笔记学习241通过属性读取样式2
js基础笔记学习241通过属性读取样式2
64 0
js基础笔记学习241通过属性读取样式2
|
前端开发 JavaScript
js基础笔记学习239读取元素的css样式2
js基础笔记学习239读取元素的css样式2
78 0
js基础笔记学习239读取元素的css样式2
|
前端开发 JavaScript
js基础笔记学习238读取元素的css样式1
js基础笔记学习238读取元素的css样式1
92 0
js基础笔记学习238读取元素的css样式1
|
JavaScript
通过js合并表格重复出现的数据
通过js合并表格重复出现的数据
145 0
|
JavaScript
JS中的Map形式(十一)
JS中的Map形式(十一)
258 0
|
JavaScript 索引 Python
手工翻译Vue.js源码:尝试重命名标识符与文本
尝试对vue.js源码中的标识符名和文本进行中文化. Try to translate identifiers and text in source code of vue.js.
849 0