简介
常说的 SFC 组件,即 Single file component
,也就是我们的vue组件
组件是将HTML、CSS以及JavaScript封装成了一个 *.vue
文件
分别是:<script>
、<template>
、<style>
说明
- JavaScript 对应:
<script>
- HTML 对应:
<template>
- CSS 对应:
<style>
本文参考链接:https://vitepress.yiov.top/components.html
使用
在 theme
目录中 创建 components
文件夹,然后创建 Mycomponent.vue
docs
├─ .vitepress
│ └─ config.mts
│ └─ theme
│ │ ├─ components
│ │ │ └─ Mycomponent.vue
│ │ └─ index.ts
└─ index.md
然后将下面代码粘贴在 Mycomponent.vue
中
说明
如果没有css样式可以不写 <style>
<script setup>
</script>
<template>
自定义的组件代码
</template>
现在是报错的状态,因为还没有安装 vue
,安装之前先停止运行站点。
npm i vue
pnpm add -D vue
yarn add -D vue
bun add -D vue
然后,在 theme\index.ts
中注册全局组件
docs
├─ .vitepress
│ └─ config.mts
│ └─ theme
│ │ ├─ components
│ │ │ └─ Mycomponent.vue
│ │ └─ index.ts
└─ index.md
/* .vitepress\theme\index.ts */
import Mycomponent from "./components/Mycomponent.vue"
export default {
extends: DefaultTheme,
enhanceApp({app}) {
// 注册全局组件
app.component('Mycomponent' , Mycomponent)
}
}
演示
本次演示一下使用 视频播放器 组件,参考了 @themusecatcher 的 Amazing UI 组件库
在 theme
目录中 创建 components
文件夹,然后创建 Video.vue
docs
├─ .vitepress
│ └─ config.mts
│ └─ theme
│ │ ├─ components
│ │ │ └─ Video.vue
│ │ └─ index.ts
└─ index.md
在 Video.vue
填入如下代码,保存
<script setup lang="ts">
import { ref, onMounted } from 'vue'
interface Props {
src: string // 视频文件地址,支持网络地址 https 和相对地址
poster?: string // 视频封面地址,支持网络地址 https 和相对地址
second?: number // 在未设置封面时,自动截取视频第 second 秒对应帧作为视频封面
width?: number // 视频播放器宽度,单位px
height?: number // 视频播放器高度,单位px
autoplay?: boolean // 视频就绪后是否马上播放,优先级高于preload
controls?: boolean // 是否向用户显示控件,比如进度条,全屏等
loop?: boolean // 视频播放完成后,是否循环播放
muted?: boolean // 是否静音
preload?: 'auto'|'metadata'|'none' // 是否在页面加载后载入视频,如果设置了autoplay属性,则preload将被忽略
showPlay?: boolean // 播放暂停时是否显示播放器中间的暂停图标
fit?: 'none'|'fill'|'contain'|'cover' // video的poster默认图片和视频内容缩放规则
}
const props = withDefaults(defineProps<Props>(), {
src: '',
poster: '',
second: 0.5,
width: 800,
height: 450,
/*
参考 MDN 自动播放指南:https://developer.mozilla.org/zh-CN/docs/Web/Media/Autoplay_guide
Autoplay 功能
据新政策,媒体内容将在满足以下至少一个的条件下自动播放:
1.音频被静音或其音量设置为 0
2.用户和网页已有交互行为(包括点击、触摸、按下某个键等等)
3.网站已被列入白名单;如果浏览器确定用户经常与媒体互动,这可能会自动发生,也可能通过首选项或其他用户界面功能手动发生
4.自动播放策略应用到<iframe>或者其文档上
autoplay:由于目前在最新版的Chrome浏览器(以及所有以Chromium为内核的浏览器)中,
已不再允许自动播放音频和视频。就算你为video或audio标签设置了autoplay属性也一样不能自动播放!
解决方法:设置视频 autoplay 时,视频必须设置为静音 muted: true 即可实现自动播放,
然后用户可以使用控制栏开启声音,类似某宝商品自动播放的宣传视频逻辑
*/
autoplay: false,
controls: true,
loop: false,
muted: false,
/*
preload可选属性:
auto: 一旦页面加载,则开始加载视频;
metadata: 当页面加载后仅加载视频的元数据(例如长度),建议使用metadata,以便视频自动获取第一帧作为封面poster
none: 页面加载后不应加载视频
*/
preload: 'auto',
showPlay: true,
/*
fit可选属性:
none: 保存原有内容,不进行缩放;
fill: 不保持原有比例,内容拉伸填充整个内容容器;
contain: 保存原有比例,内容以包含方式缩放;
cover: 保存原有比例,内容以覆盖方式缩放
*/
fit: 'contain'
})
// 参考文档:https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/video
const veoPoster = ref(props.poster)
const originPlay = ref(true)
const hidden = ref(false) // 是否隐藏播放器中间的播放按钮
// 为模板引用标注类型
const veo = ref()
// const veo = ref<HTMLVideoElement | null>(null) // 声明一个同名的模板引用
/*
loadeddata 事件在媒体当前播放位置的视频帧(通常是第一帧)加载完成后触发
preload为none时不会触发
*/
function getPoster () { // 在未设置封面时,自动截取视频0.5s对应帧作为视频封面
// 由于不少视频第一帧为黑屏,故设置视频开始播放时间为0.5s,即取该时刻帧作为封面图
veo.value.currentTime = props.second
// 创建canvas元素
const canvas = document.createElement('canvas')
const ctx = canvas.getContext('2d')
// canvas画图
canvas.width = veo.value.videoWidth
canvas.height = veo.value.videoHeight
ctx?.drawImage(veo.value, 0, 0, canvas.width, canvas.height)
// 把canvas转成base64编码格式
veoPoster.value = canvas.toDataURL('image/png')
}
function onPlay () {
if (originPlay.value) {
veo.value.currentTime = 0
originPlay.value = false
}
if (props.autoplay) {
veo.value?.pause()
} else {
hidden.value = true
veo.value?.play()
}
}
function onPause () {
hidden.value = false
}
function onPlaying () {
hidden.value = true
}
onMounted(() => {
if (props.autoplay) {
hidden.value = true
originPlay.value = false
}
/*
自定义设置播放速度,经测试:
在vue2中需设置:this.$refs.veo.playbackRate = 2
在vue3中需设置:veo.value.defaultPlaybackRate = 2
*/
// veo.value.defaultPlaybackRate = 2
})
</script>
<template>
<div class="m-video" :class="{'u-video-hover': !hidden}" :style="`width: ${width}px; height: ${height}px;`">
<video
ref="veo"
:style="`object-fit: ${fit};`"
:src="src"
:poster="veoPoster"
:width="width"
:height="height"
:autoplay="autoplay"
:controls="!originPlay&&controls"
:loop="loop"
:muted="autoplay || muted"
:preload="preload"
crossorigin="anonymous"
@loadeddata="poster ? () => false : getPoster()"
@pause="showPlay ? onPause() : () => false"
@playing="showPlay ? onPlaying() : () => false"
@click.prevent.once="onPlay"
v-bind="$attrs">
您的浏览器不支持video标签。
</video>
<span v-show="originPlay || showPlay" class="m-icon-play" :class="{'hidden': hidden}">
<svg class="u-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 34 34">
<path d="M28.26,11.961L11.035,0.813C7.464-1.498,3,1.391,3,6.013v21.974c0,4.622,4.464,7.511,8.035,5.2L28.26,22.039
C31.913,19.675,31.913,14.325,28.26,11.961z"></path>
</svg>
</span>
</div>
</template>
<style lang="less" scoped>
.m-video {
display: inline-block;
position: relative;
background: #000;
cursor: pointer;
.m-icon-play {
display: inline-block;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
width: 80px;
height: 80px;
border-radius: 50%;
background-color: rgba(0, 0, 0, .6);
pointer-events: none;
transition: background-color .3s;
.u-svg {
display: inline-block;
fill: #FFF;
width: 29px;
height: 34px;
margin-top: 23px;
margin-left: 27px;
}
}
.hidden {
opacity: 0;
}
}
.u-video-hover {
&:hover {
.m-icon-play {
background-color: rgba(0, 0, 0, .7);
}
}
}
</style>
现在是报错的状态,因为还没有安装 less
,我们现在来安装
npm i less
pnpm add -D less
yarn add -D less
bun add -D less
然后,在 index.ts
中注册全局组件
docs
├─ .vitepress
│ └─ config.mts
│ └─ theme
│ │ ├─ components
│ │ │ └─ Video.vue
│ │ ├─ style
│ │ │ └─ var.css
│ │ └─ index.ts
└─ index.md
/* .vitepress\theme\index.ts */
import Video from "./components/Video.vue"
export default {
extends: DefaultTheme,
enhanceApp({app}) {
// 注册全局组件
app.component('Video' , Video)
}
}
最后,在任意文档中插入 Video.vue
组件,我在 public文件夹
放了一段视频,直接引入 src
即可
警告
链接只能使用 本地
或者 永久的直链
,临时提取的下载链接引用会失效
输入:
<Video
src="./lol.mp4"
:width="666.67"
:height="375"
:second="3" />
输出: 就是插入一段视频,最大的不足就是,播放器没有自适应!
关于 Video.vue 组件引入爆红
其实是TS识别不了Vue,我们直接在VScode里安装 TypeScript Vue Plugin (Volar)
和 Vue Language Features (Volar)
插件即可
或者在 theme
目录 新建一个 env.d.ts
,粘贴如下代码即可
不过需要一直打开,否则还是爆红
// 引入文件爆红且不提示的处理
declare module '*.vue' {
import { DefineComponent } from 'vue'
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
const component: DefineComponent<{}, {}, any>
export default component
}
自定义VUE组件使用示例
自己写一个SFC,注册到工程中,然后在md中使用
- 在
theme
目录中创建components
目录,然后创建FreeStyle.vue
vue<script setup lang="ts"> import { ref } from 'vue' const num = ref(0) const add = () => { num.value++ } </script> <template> <div class="freestyle">我就是FreeStyle组件 Yoo</div> <button class="btn" @click="add">{{ num }}</button> </template> <style> .freestyle { color: blue; font-size: 24px; font-weight: 600; } .btn { width: 50px; height: 50px; border: 1px solid green; } </style>
- 在
.vitepress/theme/index.ts
中注册FreeStyle.vue
组件tsimport Theme from 'vitepress/theme' import './style/var.css' import FreeStyle from '../components/FreeStyle.vue' export default { ...Theme, enhanceApp({ app }) { app.component('FreeStyle', FreeStyle) } }
- 在首页
index.md
使用组件markdown--- layout: home hero: name: VitePress-Fun text: VitePress趣玩系列 tagline: Lorem ipsum... image: src: /cat.png alt: VitePress actions: - theme: brand text: Get Started 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... --- <div class="freestyle" style="color: red; font-size: 24px;">这是个有style的随便写点</div> <FreeStyle></FreeStyle>
此时FreeStyle
组件便可以成功被渲染出来,并且点击按钮能响应式变化数字
所以,对于复杂的交互组件,我们可以通过自定义SFC,然后在theme/index.ts
中注册组件,并在md中使用组件,达到想要的复杂交互效果