vue3之vite创建h5项目之2 (sass公共样式、声明组件、路由配置和layout组件 )

这篇具有很好参考价值的文章主要介绍了vue3之vite创建h5项目之2 (sass公共样式、声明组件、路由配置和layout组件 )。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

vue3之vite创建h5项目之2 ( )

1:安装sass

  • pnpm i -D sass

1-1 使用sass引入公共样式1

1-1-1 main.ts 引入公共样式方式

// 引入公共样式与变量   // 引入公共样式方式1
import '@/style/index.scss'

1-2 vite.config.ts 引入公共样式方式2

export default defineConfig({
  // 引入公共样式方式2
  css: {
    preprocessorOptions: {
      scss: {
        additionalData: `
		  @import "@/style/reset.scss";
          @import "@/style/mixin.scss";
          @import "@/style/variables.scss";
          `,
      },
    },
  },
})

1-3样式文件

1-3-1 src / style / index.scss ( 适配iphonex等还有引入其他公共的样式 )

@import './reset.scss';
@import './variables.scss';
@import './mixin.scss';

html,
body,
#app {
  height: 100%;
  color: #333333;
  font-family: Arial, Helvetica, 'STHeiti STXihei', 'Microsoft YaHei', Tohoma, sans-serif;
  background-color: $background-color;
}

.app-container {
  padding-bottom: 50px;
}

#__vconsole {
  display: none;
}

.fixIphonex {
  padding-bottom: $safe-bottom !important;
  &::after {
    content: '';
    position: fixed;
    bottom: 0 !important;
    left: 0;
    height: calc(#{$safe-bottom} + 1px);
    width: 100%;
    background: #ffffff;
  }
}

/* 适配iphonex */

@supports (bottom: env(safe-area-inset-bottom)) {
  .app-container {
    padding-bottom: calc(env(safe-area-inset-bottom) + 50px); // 这里是重点
  }
  .bottom-button-box {
    bottom: env(safe-area-inset-bottom); // 这里是重点
    &:after {
      content: '';
      height: env(safe-area-inset-bottom); // 这里是重点
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: #fff;
    }
  }
}

1-3-2 src / style / mixin.scss ( 公共样式方法抽离 )

// mixin
// 清除浮动
@mixin clearfix {
  &:after {
    content: "";
    display: table;
    clear: both;
  }
}
 
// 多行隐藏
@mixin textoverflow($clamp:1) {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: $clamp;
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
}

//flex box
@mixin flexbox($jc:space-between, $ai:center, $fd:row, $fw:nowrap) {
  display: flex;
  display: -webkit-flex;
  flex: 1;
  justify-content: $jc;
  -webkit-justify-content: $jc;
  align-items: $ai;
  -webkit-align-items: $ai;
  flex-direction: $fd;
  -webkit-flex-direction: $fd;
  flex-wrap: $fw;
  -webkit-flex-wrap: $fw;
}

1-3-3 src / style / reset.scss ( 重置样式 )

/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-weight: normal;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* custom */
a {
	text-decoration: none;
	-webkit-backface-visibility: hidden;
}

li {
	list-style: none;
}

::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

::-webkit-scrollbar-track-piece {
	background-color: rgba(0, 0, 0, 0.2);
	-webkit-border-radius: 6px;
}

::-webkit-scrollbar-thumb:vertical {
	height: 5px;
	background-color: rgba(125, 125, 125, 0.7);
	-webkit-border-radius: 6px;
}

::-webkit-scrollbar-thumb:horizontal {
	width: 5px;
	background-color: rgba(125, 125, 125, 0.7);
	-webkit-border-radius: 6px;
}

html,
body {
	width: 100%;
	height: 100%;
}

body {
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

1-3-4 src / style / variables.scss ( 定义的公共变量样式 )

// variables
$background-color: #f8f8f8;
$theme-color: #07b0b8;
$safe-bottom: constant(safe-area-inset-bottom);
$safe-bottom: env(safe-area-inset-bottom);

1-3-5 使用变量

<template>
  <div>
	App
	<div class="rrrr">rrrr</div>
  </div>
</template>

<script setup lang="ts" name='App'>
import { } from 'vue'
console.log("meta.env", import.meta.env)
</script>

<style  lang="scss" scoped>
.rrrr {
	color: $theme-color;
}
</style>

2:声明组件 否则ts报红线 项目根目录 / env.d.ts

// 声明自己定义的 vue组件
declare module '*.vue' {
    import type { DefineComponent } from 'vue';
	const vueComponent: DefineComponent<{}, {}, any>;
	export default vueComponent;
}

3:路由配置和layout组件配置

3-1 路径文件 router/index.ts

import type {  RouteRecordRaw} from 'vue-router'
import  { createRouter, createWebHistory } from 'vue-router'
import Layout from '@/views/layout/index.vue'
const routes: Array<RouteRecordRaw> = [
	{
	  path: '/',
	  name: 'Home',
	  redirect: '/home',
	  meta: {
		title: '首页',
		keepAlive: false
	  },
	  component: Layout,
	  children: [
		{
			path: '/home',
			name: 'Home',
			component: () => import('@/views/home/index.vue'),
			meta: { title: '首页', keepAlive: false, showTab: true }
		},
		{
			path: '/about',
			name: 'About',
			component: () => import('@/views/about/index.vue'),
			meta: { title: '关于', keepAlive: false, showTab: true }
		},
		{
			path: '/test',
			name: 'Test',
			component: () => import('@/views/test/index.vue'),
			meta: { title: '测试', keepAlive: false, showTab: true }
		},
		{
			path: '/mine',
			name: 'Mine',
			component: () => import('@/views/mine/index.vue'),
			meta: { title: '我的', keepAlive: false, showTab: true }
		},
		{
		  path: '/noTab',
		  name: 'NoTab',
		  component: () => import('@/views/noTab/index.vue'),
		  meta: { title: '没有Tab', keepAlive: false, showTab: false }
		},
	  ]
	}
  ]

const router = createRouter({
  history: createWebHistory(import.meta.env.BASE_URL),
  routes
})

export default router

3-2 Layout组件 view / layout / index.vue

<template>
	<div class="layout">
		<div class="layout-content" :class="[route.meta.showTab ? 'showTab' : 'noShowTab']">
			<keep-alive v-if="route.meta.keepAlive">
				<router-view></router-view>
			</keep-alive>
			<router-view v-else></router-view>
		</div>
		<div class="layout-footer" v-if="route.meta.showTab">
			<TabBar :tabbars="tabbars" v-model="activeRoute" @change="handleChange" />
		</div>
	</div>
</template>

<script setup lang="ts" name="LayoutIndex">
import TabBar from "@/components/TabBar.vue"
import { useRoute } from 'vue-router'
import type { ITabList } from '@/components/TabBar.vue'
import { reactive, watch, ref } from 'vue'
const route = useRoute()
console.log(route.meta)
const tabbars: Array<ITabList> = reactive([
	{ title: '首页', to: '/home', icon: 'home-o' },
	{ title: '关于', to: '/about', icon: 'label-o' },
	{ title: '测试', to: '/test', icon: 'star-o' },
	{ title: '我的', to: '/mine', icon: 'user-o' }
])
const activeRoute = ref(0)
watch(activeRoute, (v) => {
	console.log('tab value v-model:', v)
})
const handleChange = (v: number) => {
	console.log('tab value @change:', v)
}
watch(route, (v) => {
	console.log('route', v.name)
})
</script>
<style  lang="scss" scoped>
.layout {
	background: #fff;
	width: 100%;
	height: 100%;
	.layout-content {
		background: #d5d5d5;
	}
	.showTab {
		height: calc(100% - 50px);
		overflow-y: scroll;
	}
	.noShowTab {
		height: 100%;
		overflow-y: scroll;
	}
}
</style>

3-3 TabBar.vue 组件 src / components/ abBar.vue

<script setup lang="ts">
import { computed,defineProps ,defineEmits } from 'vue'
import type { PropType } from 'vue';

export interface ITabList {
	title: string // 标题
	to: string // url路径
	icon: string // 图标
}
const props = defineProps({
	tabbars: {
		type: Array as PropType<ITabList[]>,
		default: () => []
	},
	active: Number
})
const emit = defineEmits(['change', 'update:active'])
const active = computed({
	get: () => props.active,
	set: (val) => {
		emit('update:active', val)
		emit('change', val)
	}
})
</script>
<template>
	<van-tabbar v-model="active" route fixed>
		<van-tabbar-item v-for="item in tabbars" :to="item.to" :icon="item.icon" :key="item.to">
			{{ item.title }}
		</van-tabbar-item>
	</van-tabbar>
</template>

3-4 使用到van组件库

  • 安装:pnpm i vant@next -S
  • main.ts
import 'vant/lib/index.css';
import { Tabbar,TabbarItem } from 'vant';

const app = createApp(App)
app.use(Tabbar);
app.use(TabbarItem);

3-5 App.vue

<template>
	<router-view />
</template>

<script setup lang="ts" name='App'>
import { } from 'vue'
console.log("meta.env", import.meta.env)
</script>

<style  lang="scss" scoped>
#app {
	height: 100%;
	width: 100%;
}
</style>

3-6 效果

vite引入sass,vue3-h5,sass,javascript,前端文章来源地址https://www.toymoban.com/news/detail-745309.html

到了这里,关于vue3之vite创建h5项目之2 (sass公共样式、声明组件、路由配置和layout组件 )的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 在vite+vue3项目中配置使用css预处理器(less/sass)以及路径别名

    vite已经将这些预处理器的loader内置了,我们不用再像在webpack项目中那样,需要下载和配置一堆相关的loader,我们只需要下载less,sass依赖,就能直接在项目中使用啦 使用npm或者yarn来安装以下依赖: Less预处理器: npm install -D less Sass预处理器: npm install -D sass 如图,下载之后

    2024年02月11日
    浏览(98)
  • 前端新手Vue3+Vite+Ts+Pinia+Sass项目指北系列文章 —— 第一章 技术栈简介 (开篇)

    旨在帮助初学者掌握使用现代前端技术栈构建应用的基础知识和技能。在这个系列中,我们将深入探讨如何结合Vue.js、Vite、TypeScript、Pinia和Sass这些强大的工具和框架来开发现代化的前端应用。 通过这个系列,我们将从零开始构建一个完整的前端项目,覆盖项目初始化、组件

    2024年02月05日
    浏览(49)
  • 解决vue3+vite项目中引入mockjs失败的问题--无法找到模块“mockjs”的声明文件

     看到上面报错,根据提示 修改声明方式 declare module \\\'mockjs\\\'  我们修改一下引入的声明,发现修改之后仍然报错;    解决方法: 需要在vite-env.d.ts文件中,添加  declare module \\\'mockjs\\\',保存即可  然后就可以正常使用了  

    2024年02月11日
    浏览(47)
  • vite创建vue3项目

    这种方式创建的项目最快捷,因为基本依赖都装好了 这种方式会基于模板创建项目,对于官方模板vue-ts,只带有基础的vue和ts,不带有vue-router、pinia等 以上命令中,\\\"vue-ts\\\"是模板名称 或者使用以下命令然后勾选模板来创建项目 这种方式创建的项目甚至连vite.config.ts都没有,如

    2024年02月05日
    浏览(79)
  • 前端新手Vue3+Vite+Ts+Pinia+Sass项目指北系列文章 —— 第十一章 基础界面开发 (组件封装和使用)

    Vue 是前端开发中非常常见的一种框架,它的易用性和灵活性使得它成为了很多开发者的首选。而在 Vue2 版本中,组件的开发也变得非常简单,但随着 Vue3 版本的发布,组件开发有了更多的特性和优化,为我们的业务开发带来了更多便利。本文将介绍如何使用 Vue3 开发业务组件

    2024年02月19日
    浏览(83)
  • 前端新手Vue3+Vite+Ts+Pinia+Sass项目指北系列文章 —— 第十二章 常用工具函数 (Utils配置)

    在项目开发中,我们经常会使用一些工具函数,也经常会用到例如 loadsh 等工具库,但是这些工具库的体积往往比较大,如果项目本身已经引入了这些工具库,那么我们就没有必要再引入一次,所以我们需要自己封装一些工具函数,来简化我们的开发。 在 src/utils 目录下创建

    2024年02月20日
    浏览(57)
  • vue3创建项目,vite+js

    之前的时候大哥就让我自己搭架子,但是我拖延症,现在用到了,得自己搭了 我的项目都放到了 VuePorjects这个目录里面, 一、先进入到指定工作目录,(不是你要创建的项目的名称哈) 二、创建vue3项目,安装创建项目  @latest是项目名称,可以自己修改项目名称,然后选择

    2024年02月16日
    浏览(63)
  • 使用vue3 + TS + Pinia + Vant4 + vite搭建商城H5项目框架

    本文主要将如何利用搭建一个初始化的商城H5项目框架。初始化阶段使用的技术栈有:vue3.2、vue-router、 TS 、 Pinia 、 Vant4、Less、vite                         node -v 检测是否有安装node.js,未安装请先去官网安装node.js         终端输入: npm init vite         自定

    2024年02月12日
    浏览(60)
  • 创建一个vite+vue3项目详细教程

    一、首先打开本地磁盘,找到一个存放路径  这里 我选择将新建项目放置在E盘的demo-vitedemo路径下 二、在该路径处打开命令行cmd  三、在打开的命令行中输入创建命令  注意在搭建之前要安装node.js环境依赖,并且确认你的版本 Vite 需要Node.js版本 14.18+,16+。然而,有些模板需

    2024年02月15日
    浏览(53)
  • vue3+vite+ts+elementplus创建项目

    # vue3+vite+ts+pinia 学习笔记 ## 1、创建项目: npm init vite@latest     选择: vue、ts ## 2、进入项目目录后:npm install 安装 ## 3、运行项目: npm run dev ## 4、安装常用插件:     1、安装 npm install vue-router@latest 配置:在src目录下新建router目录,创建index.ts文件代码如下:       ```javascript 创建

    2024年02月09日
    浏览(60)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包