You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Nursing-home-management-system/client/src/views/base/live/index.vue

18 lines
1010 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<!-- router-view Vue Router 提供的一个组件用于显示当前路由对应的组件内容
当在路由配置中定义了不同的路径和对应的组件后匹配到的组件会渲染到这里 -->
<router-view></router-view>
</template>
<script setup lang="ts">
// 这里使用了 Vue 3 的 <script setup> 语法糖,用于组合式 API 编写组件逻辑。
// 目前此部分为空,没有编写具体的逻辑代码,可能在后续根据页面需求添加相关功能代码,
// 比如定义数据、方法、生命周期钩子等。
</script>
<style lang="scss" scoped>
// lang="scss" 表示使用 SCSS 预处理器来编写样式代码SCSS 是 CSS 的扩展,增加了一些特性如变量、嵌套等。
// scoped 属性表示该样式只对当前组件生效,不会影响到其他组件的样式,避免了样式冲突问题。
// 目前此样式部分为空,后续可根据需要编写具体的样式规则来设置页面的样式。
</style>