私教张专题

Python私教张大鹏 Vue Router 快速入门教程

介绍 https://router.vuejs.org/zh/introduction Vue Router 是 Vue.js 的官方路由。它与 Vue.js 核心深度集成,让用 Vue.js 构建单页应用变得轻而易举。功能包括: 嵌套路由映射动态路由选择模块化、基于组件的路由配置路由参数、查询、通配符展示由 Vue.js 的过渡系统提供的过渡效果细致的导航控制自动激活 CSS 类的链接HT

Python私教张大鹏 Vue3整合AntDesignVue之Anchor 锚点

用于跳转到页面指定位置。 何时使用 需要展现当前页面上可供跳转的锚点链接,以及快速在锚点之间跳转。 案例:锚点的基本使用 核心代码: <template><a-anchor:items="[{key: 'part-1',href: '#part-1',title: () => h('span', { style: 'color: red' }, 'Part 1'),},{key: 'pa

Python私教张大鹏 Vue3整合AntDesignVue之Flex布局组件

Divider 分割线 案例:分割线 核心代码: <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed nonne merninisti licere mihi istaprobare, quae sunt a te dicta? Refert tamen, quo modo.</p><a-divider /><

Python私教张大鹏 Vue3整合AntDesignVue之文本组件

案例:展示标题 核心代码: <a-typography><a-typography-title>Introduction</a-typography-title></a-typography> vue3示例: <template><a-typography><a-typography-title>这是一个标题</a-typography-title></a-typography></