mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-06 03:57:50 +08:00
feat: 添加varletUI框架和升级依赖
This commit is contained in:
parent
160b46dc7f
commit
d12e073fce
@ -15,7 +15,7 @@ module.exports = {
|
|||||||
jsx: true,
|
jsx: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
extends: ['plugin:vue/vue3-recommended', 'plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended'],
|
extends: ['plugin:vue/vue3-recommended', 'plugin:@typescript-eslint/recommended', 'prettier', 'plugin:prettier/recommended'],
|
||||||
rules: {
|
rules: {
|
||||||
'vue/script-setup-uses-vars': 'error',
|
'vue/script-setup-uses-vars': 'error',
|
||||||
'@typescript-eslint/ban-ts-ignore': 'off',
|
'@typescript-eslint/ban-ts-ignore': 'off',
|
||||||
|
53
README.md
53
README.md
@ -34,10 +34,10 @@ yarn dev
|
|||||||
- [√ vite](#vite)
|
- [√ vite](#vite)
|
||||||
- [√ 配置多环境变量](#env)
|
- [√ 配置多环境变量](#env)
|
||||||
- [√ viewport 适配方案](#viewport)
|
- [√ viewport 适配方案](#viewport)
|
||||||
- [√ nutUI 组件按需加载](#nutUI)
|
- [√ 多 UI 组件库供选择](#ui)
|
||||||
- [√ Pinia 状态管理](#Pinia)
|
- [√ Pinia 状态管理](#Pinia)
|
||||||
- [√ Vue-router4](#router)
|
- [√ vue-router 4](#router)
|
||||||
- [√ Axios 封装及接口管理](#axios)
|
- [√ axios 封装及接口管理](#axios)
|
||||||
- [√ vite.config.ts 基础配置](#base)
|
- [√ vite.config.ts 基础配置](#base)
|
||||||
- [√ alias](#alias)
|
- [√ alias](#alias)
|
||||||
- [√ proxy 跨域](#proxy)
|
- [√ proxy 跨域](#proxy)
|
||||||
@ -154,31 +154,33 @@ module.exports = {
|
|||||||
|
|
||||||
[▲ 回顶部](#top)
|
[▲ 回顶部](#top)
|
||||||
|
|
||||||
### <span id="nutUI">✅ nutUI 组件按需加载 </span>
|
### <span id="ui">✅ 多 UI 组件库供选择 </span>
|
||||||
|
|
||||||
Vite 构建工具,使用 vite-plugin-style-import 实现按需引入。
|
Vite 构建工具,使用 vite-plugin-style-import 和 unplugin-vue-components/vite 实现按需引入。
|
||||||
|
|
||||||
#### 安装插件
|
#### 安装插件
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
yarn add vite-plugin-style-import -D
|
yarn add vite-plugin-style-import -D
|
||||||
|
yarn add unplugin-vue-components/vite -D
|
||||||
```
|
```
|
||||||
|
|
||||||
在 `vite.config.ts` 设置
|
#### 使用组件库
|
||||||
|
|
||||||
|
nutUI 没有按需加载的 resolvers,style 需要自己配置按需加载
|
||||||
|
|
||||||
|
在 `config/vite/plugins/styleImport.ts` 设置
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
plugins: [
|
// 按需加载样式文件
|
||||||
...
|
...
|
||||||
createStyleImportPlugin({
|
createStyleImportPlugin({
|
||||||
resolves: [NutuiResolve()],
|
resolves: [NutuiResolve()],
|
||||||
}),
|
}),
|
||||||
...
|
...
|
||||||
],
|
|
||||||
```
|
```
|
||||||
|
|
||||||
#### 使用组件
|
项目在 `src/plugins/nutUI.ts` 下统一管理组件,用哪个引入哪个,无需在页面里重复引用
|
||||||
|
|
||||||
项目在 `plugins/nutUI.ts` 下统一管理组件,用哪个引入哪个,无需在页面里重复引用
|
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
// 按需全局引入nutUI组件
|
// 按需全局引入nutUI组件
|
||||||
@ -192,6 +194,25 @@ nutUiComponents.forEach((item) => {
|
|||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
|
vant 和 varlet 可以使用组件按需加载
|
||||||
|
|
||||||
|
在`config/vite/plugins/component.ts`下
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
import { VueUseComponentsResolver, VantResolver, VarletUIResolver } from 'unplugin-vue-components/resolvers';
|
||||||
|
...
|
||||||
|
resolvers: [VantResolver(), VarletUIResolver()],
|
||||||
|
...
|
||||||
|
```
|
||||||
|
|
||||||
|
#### 不需要某个组件库
|
||||||
|
|
||||||
|
nutUI 需删除`src/plugins/nutUI.ts`和`main.ts`文件下的引入
|
||||||
|
|
||||||
|
vant 和 varlet 只需删除对应的 resolvers 即可
|
||||||
|
|
||||||
|
删除后需全局搜索删除不需要的组件
|
||||||
|
|
||||||
[▲ 回顶部](#top)
|
[▲ 回顶部](#top)
|
||||||
|
|
||||||
### <span id="Pinia">✅ Pinia 状态管理</span>
|
### <span id="Pinia">✅ Pinia 状态管理</span>
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
* @name AutoImportDeps
|
* @name AutoImportDeps
|
||||||
* @description 按需加载,自动引入
|
* @description 按需加载,自动引入
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import AutoImport from 'unplugin-auto-import/vite';
|
import AutoImport from 'unplugin-auto-import/vite';
|
||||||
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers';
|
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers';
|
||||||
|
|
||||||
|
@ -2,8 +2,9 @@
|
|||||||
* @name AutoRegistryComponents
|
* @name AutoRegistryComponents
|
||||||
* @description 按需加载,自动引入组件
|
* @description 按需加载,自动引入组件
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import Components from 'unplugin-vue-components/vite';
|
import Components from 'unplugin-vue-components/vite';
|
||||||
import { VueUseComponentsResolver, VantResolver } from 'unplugin-vue-components/resolvers';
|
import { VueUseComponentsResolver, VantResolver, VarletUIResolver } from 'unplugin-vue-components/resolvers';
|
||||||
export const AutoRegistryComponents = () => {
|
export const AutoRegistryComponents = () => {
|
||||||
return Components({
|
return Components({
|
||||||
// dirs: ['src/components'],
|
// dirs: ['src/components'],
|
||||||
@ -15,6 +16,6 @@ export const AutoRegistryComponents = () => {
|
|||||||
directives: true,
|
directives: true,
|
||||||
include: [/\.vue$/, /\.vue\?vue/, /\.md$/],
|
include: [/\.vue$/, /\.vue\?vue/, /\.md$/],
|
||||||
exclude: [/[\\/]node_modules[\\/]/, /[\\/]\.git[\\/]/, /[\\/]\.nuxt[\\/]/],
|
exclude: [/[\\/]node_modules[\\/]/, /[\\/]\.git[\\/]/, /[\\/]\.nuxt[\\/]/],
|
||||||
resolvers: [VueUseComponentsResolver(), VantResolver()],
|
resolvers: [VueUseComponentsResolver(), VantResolver(), VarletUIResolver()],
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
* @name ConfigCompressPlugin
|
* @name ConfigCompressPlugin
|
||||||
* @description 开启.gz压缩
|
* @description 开启.gz压缩
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import viteCompression from 'vite-plugin-compression';
|
import viteCompression from 'vite-plugin-compression';
|
||||||
|
|
||||||
export const ConfigCompressPlugin = () => {
|
export const ConfigCompressPlugin = () => {
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
* @name ConfigEruda
|
* @name ConfigEruda
|
||||||
* @description 控制台,方便移动端调试
|
* @description 控制台,方便移动端调试
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import eruda from 'vite-plugin-eruda';
|
import eruda from 'vite-plugin-eruda';
|
||||||
|
|
||||||
export const ConfigEruda = () => {
|
export const ConfigEruda = () => {
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
* @name ConfigImageminPlugin
|
* @name ConfigImageminPlugin
|
||||||
* @description 图片压缩
|
* @description 图片压缩
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import viteImagemin from 'vite-plugin-imagemin';
|
import viteImagemin from 'vite-plugin-imagemin';
|
||||||
|
|
||||||
export function ConfigImageminPlugin() {
|
export function ConfigImageminPlugin() {
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
* @name createVitePlugins
|
* @name createVitePlugins
|
||||||
* @description 封装plugins数组统一调用
|
* @description 封装plugins数组统一调用
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import type { Plugin } from 'vite';
|
import type { Plugin } from 'vite';
|
||||||
import vue from '@vitejs/plugin-vue';
|
import vue from '@vitejs/plugin-vue';
|
||||||
import vueJsx from '@vitejs/plugin-vue-jsx';
|
import vueJsx from '@vitejs/plugin-vue-jsx';
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
* @name ConfigMockPlugin
|
* @name ConfigMockPlugin
|
||||||
* @description 引入mockjs,本地模拟接口
|
* @description 引入mockjs,本地模拟接口
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { viteMockServe } from 'vite-plugin-mock';
|
import { viteMockServe } from 'vite-plugin-mock';
|
||||||
export const ConfigMockPlugin = (isBuild: boolean) => {
|
export const ConfigMockPlugin = (isBuild: boolean) => {
|
||||||
return viteMockServe({
|
return viteMockServe({
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
* @name ConfigPagesPlugin
|
* @name ConfigPagesPlugin
|
||||||
* @description 动态生成路由
|
* @description 动态生成路由
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import Pages from 'vite-plugin-pages';
|
import Pages from 'vite-plugin-pages';
|
||||||
export const ConfigPagesPlugin = () => {
|
export const ConfigPagesPlugin = () => {
|
||||||
return Pages({
|
return Pages({
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
* @name ConfigRestartPlugin
|
* @name ConfigRestartPlugin
|
||||||
* @description 监听配置文件修改自动重启Vite
|
* @description 监听配置文件修改自动重启Vite
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import ViteRestart from 'vite-plugin-restart';
|
import ViteRestart from 'vite-plugin-restart';
|
||||||
export const ConfigRestartPlugin = () => {
|
export const ConfigRestartPlugin = () => {
|
||||||
return ViteRestart({
|
return ViteRestart({
|
||||||
|
@ -2,10 +2,11 @@
|
|||||||
* @name ConfigRestartPlugin
|
* @name ConfigRestartPlugin
|
||||||
* @description 按需引入样式文件
|
* @description 按需引入样式文件
|
||||||
*/
|
*/
|
||||||
import { createStyleImportPlugin, NutuiResolve, VantResolve } from 'vite-plugin-style-import';
|
|
||||||
|
import { createStyleImportPlugin, NutuiResolve } from 'vite-plugin-style-import';
|
||||||
|
|
||||||
export const ConfigStyleImport = () => {
|
export const ConfigStyleImport = () => {
|
||||||
return createStyleImportPlugin({
|
return createStyleImportPlugin({
|
||||||
resolves: [NutuiResolve(), VantResolve()],
|
resolves: [NutuiResolve()],
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
* @name SvgIconsPlugin
|
* @name SvgIconsPlugin
|
||||||
* @description 加载SVG文件,自动引入
|
* @description 加载SVG文件,自动引入
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons';
|
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
|
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
/**
|
||||||
|
* @name ConfigVisualizerConfig
|
||||||
|
* @description 打包体积分析
|
||||||
|
*/
|
||||||
|
|
||||||
import visualizer from 'rollup-plugin-visualizer';
|
import visualizer from 'rollup-plugin-visualizer';
|
||||||
import { IsReport } from '../../constant';
|
import { IsReport } from '../../constant';
|
||||||
|
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
name="viewport"
|
name="viewport"
|
||||||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0,viewport-fit=cover"
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0,viewport-fit=cover"
|
||||||
/>
|
/>
|
||||||
|
<meta name="format-detection" content="telephone=no, email=no, date=no, address=no" />
|
||||||
<title>Vite App</title>
|
<title>Vite App</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
@ -31,7 +32,7 @@
|
|||||||
|
|
||||||
lastTouchEnd = now;
|
lastTouchEnd = now;
|
||||||
},
|
},
|
||||||
false
|
false,
|
||||||
);
|
);
|
||||||
|
|
||||||
document.addEventListener('gesturestart', function (event) {
|
document.addEventListener('gesturestart', function (event) {
|
||||||
|
31
package.json
31
package.json
@ -17,23 +17,27 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@nutui/nutui": "^3.1.22",
|
"@nutui/nutui": "^3.1.22",
|
||||||
"@vueuse/core": "8.9.1",
|
"@varlet/ui": "^1.27.17",
|
||||||
"@vueuse/integrations": "8.9.1",
|
"@vueuse/core": "8.9.2",
|
||||||
|
"@vueuse/integrations": "8.9.2",
|
||||||
"axios": "0.27.2",
|
"axios": "0.27.2",
|
||||||
"pinia": "^2.0.14",
|
"pinia": "^2.0.16",
|
||||||
"universal-cookie": "^4.0.4",
|
"universal-cookie": "^4.0.4",
|
||||||
"vant": "^3.5.2",
|
"vant": "^3.5.2",
|
||||||
"vue": "^3.2.36",
|
"vue": "^3.2.36",
|
||||||
"vue-i18n": "^9.1.10",
|
"vue-i18n": "^9.1.10",
|
||||||
"vue-router": "^4.1.1"
|
"vue-router": "^4.1.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^17.0.42",
|
"@types/node": "^17.0.42",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.30.5",
|
"@typescript-eslint/eslint-plugin": "^5.30.6",
|
||||||
"@typescript-eslint/parser": "^5.30.5",
|
"@typescript-eslint/parser": "^5.30.6",
|
||||||
"@vitejs/plugin-legacy": "^1.8.2",
|
"@vitejs/plugin-legacy": "^2.0.0",
|
||||||
"@vitejs/plugin-vue": "^2.3.3",
|
"@vitejs/plugin-vue": "^3.0.0",
|
||||||
"@vitejs/plugin-vue-jsx": "^1.3.10",
|
"@vitejs/plugin-vue-jsx": "^2.0.0",
|
||||||
|
"amfe-flexible": "^2.2.1",
|
||||||
|
"autoprefixer": "^10.4.7",
|
||||||
|
"cnjm-postcss-px-to-viewport": "^1.0.0",
|
||||||
"consola": "^2.15.3",
|
"consola": "^2.15.3",
|
||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
"eruda": "^2.5.0",
|
"eruda": "^2.5.0",
|
||||||
@ -47,7 +51,6 @@
|
|||||||
"postcss": "^8.4.14",
|
"postcss": "^8.4.14",
|
||||||
"postcss-html": "1.5.0",
|
"postcss-html": "1.5.0",
|
||||||
"postcss-less": "^6.0.0",
|
"postcss-less": "^6.0.0",
|
||||||
"postcss-px-to-viewport-8-plugin": "^1.1.3",
|
|
||||||
"prettier": "^2.7.1",
|
"prettier": "^2.7.1",
|
||||||
"rollup-plugin-visualizer": "^5.6.0",
|
"rollup-plugin-visualizer": "^5.6.0",
|
||||||
"stylelint": "^14.9.1",
|
"stylelint": "^14.9.1",
|
||||||
@ -57,21 +60,21 @@
|
|||||||
"stylelint-config-standard": "^26.0.0",
|
"stylelint-config-standard": "^26.0.0",
|
||||||
"stylelint-order": "^5.0.0",
|
"stylelint-order": "^5.0.0",
|
||||||
"typescript": "^4.6.3",
|
"typescript": "^4.6.3",
|
||||||
"unplugin-auto-import": "^0.9.2",
|
"unplugin-auto-import": "^0.9.3",
|
||||||
"unplugin-vue-components": "^0.21.1",
|
"unplugin-vue-components": "^0.21.1",
|
||||||
"vite": "^2.9.14",
|
"vite": "^3.0.0",
|
||||||
"vite-plugin-compression": "^0.5.1",
|
"vite-plugin-compression": "^0.5.1",
|
||||||
"vite-plugin-eruda": "^1.0.1",
|
"vite-plugin-eruda": "^1.0.1",
|
||||||
"vite-plugin-imagemin": "^0.6.1",
|
"vite-plugin-imagemin": "^0.6.1",
|
||||||
"vite-plugin-mock": "^2.9.6",
|
"vite-plugin-mock": "^2.9.6",
|
||||||
"vite-plugin-pages": "^0.25.0",
|
"vite-plugin-pages": "^0.25.0",
|
||||||
"vite-plugin-progress": "^0.0.3",
|
"vite-plugin-progress": "^0.0.3",
|
||||||
"vite-plugin-restart": "^0.1.1",
|
"vite-plugin-restart": "^0.2.0",
|
||||||
"vite-plugin-style-import": "^2.0.0",
|
"vite-plugin-style-import": "^2.0.0",
|
||||||
"vite-plugin-svg-icons": "^2.0.1",
|
"vite-plugin-svg-icons": "^2.0.1",
|
||||||
"vite-plugin-vue-setup-extend": "^0.4.0",
|
"vite-plugin-vue-setup-extend": "^0.4.0",
|
||||||
"vue-eslint-parser": "^9.0.3",
|
"vue-eslint-parser": "^9.0.3",
|
||||||
"vue-tsc": "^0.38.2"
|
"vue-tsc": "^0.38.5"
|
||||||
},
|
},
|
||||||
"husky": {
|
"husky": {
|
||||||
"hooks": {
|
"hooks": {
|
||||||
|
@ -1,8 +1,16 @@
|
|||||||
|
const path = require('path');
|
||||||
|
|
||||||
|
const judgeComponent = (file) => {
|
||||||
|
const ignore = ['vant', '@nutui', '@varlet'];
|
||||||
|
return ignore.some((item) => path.join(file).includes(path.join('node_modules', item)));
|
||||||
|
};
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: {
|
plugins: {
|
||||||
'postcss-px-to-viewport-8-plugin': {
|
autoprefixer: { overrideBrowserslist: ['Android 4.1', 'iOS 7.1', 'Chrome > 31', 'ff > 31', 'ie >= 8'] },
|
||||||
|
'cnjm-postcss-px-to-viewport': {
|
||||||
unitToConvert: 'px', // 要转化的单位
|
unitToConvert: 'px', // 要转化的单位
|
||||||
viewportWidth: 375, // UI设计稿的宽度
|
viewportWidth: 750, // UI设计稿的宽度
|
||||||
unitPrecision: 6, // 转换后的精度,即小数点位数
|
unitPrecision: 6, // 转换后的精度,即小数点位数
|
||||||
propList: ['*'], // 指定转换的css属性的单位,*代表全部css属性的单位都进行转换
|
propList: ['*'], // 指定转换的css属性的单位,*代表全部css属性的单位都进行转换
|
||||||
viewportUnit: 'vw', // 指定需要转换成的视窗单位,默认vw
|
viewportUnit: 'vw', // 指定需要转换成的视窗单位,默认vw
|
||||||
@ -10,7 +18,13 @@ module.exports = {
|
|||||||
minPixelValue: 1, // 默认值1,小于或等于1px则不进行转换
|
minPixelValue: 1, // 默认值1,小于或等于1px则不进行转换
|
||||||
mediaQuery: true, // 是否在媒体查询的css代码中也进行转换,默认false
|
mediaQuery: true, // 是否在媒体查询的css代码中也进行转换,默认false
|
||||||
replace: true, // 是否转换后直接更换属性值
|
replace: true, // 是否转换后直接更换属性值
|
||||||
exclude: [/node_modules/], // 设置忽略文件,用正则做目录名匹配
|
include: [],
|
||||||
|
exclude: [], // 设置忽略文件,用正则做目录名匹配
|
||||||
|
customFun: ({ file }) => {
|
||||||
|
// 这个自定义的方法是针对处理vant组件下的设计稿为375问题
|
||||||
|
const designWidth = judgeComponent(file) ? 375 : 750;
|
||||||
|
return designWidth;
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -1,12 +1,17 @@
|
|||||||
export const lang = {
|
export const lang = {
|
||||||
|
title: 'VUE H5 development template',
|
||||||
tabbar: {
|
tabbar: {
|
||||||
home: 'Home',
|
home: 'Home',
|
||||||
list: 'List',
|
list: 'List',
|
||||||
member: 'Member',
|
member: 'Member',
|
||||||
|
demo: 'demo',
|
||||||
},
|
},
|
||||||
language: {
|
language: {
|
||||||
en: 'English',
|
en: 'English',
|
||||||
zh: 'Chinese',
|
zh: 'Chinese',
|
||||||
},
|
},
|
||||||
introduction: 'A rapid development vue3 of mobile terminal template',
|
introduction: 'A rapid development vue3 of mobile terminal template',
|
||||||
|
home: {
|
||||||
|
support: 'support',
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
export const lang = {
|
export const lang = {
|
||||||
|
title: 'VUE H5开发模板',
|
||||||
tabbar: {
|
tabbar: {
|
||||||
home: '首页',
|
home: '首页',
|
||||||
list: '列表',
|
list: '列表',
|
||||||
member: '我的',
|
member: '我的',
|
||||||
|
demo: '示例',
|
||||||
},
|
},
|
||||||
language: {
|
language: {
|
||||||
en: '英文',
|
en: '英文',
|
||||||
|
@ -1,15 +1,22 @@
|
|||||||
<template>
|
<template>
|
||||||
|
<nut-navbar :left-show="false" :title="$t($route.meta.title)" />
|
||||||
<div class="main-page">
|
<div class="main-page">
|
||||||
<router-view v-slot="{ Component }">
|
<keep-alive>
|
||||||
|
<router-view v-if="$route.meta.keepAlive" :key="$route.path" />
|
||||||
|
</keep-alive>
|
||||||
|
<router-view v-if="!$route.meta.keepAlive" :key="$route.path" />
|
||||||
|
<!-- <RouterView v-slot="{ Component }" v-if="$route.meta.keepAlive">
|
||||||
<keep-alive>
|
<keep-alive>
|
||||||
<component :is="Component" />
|
<component :is="Component" :key="$route.path" />
|
||||||
</keep-alive>
|
</keep-alive>
|
||||||
</router-view>
|
</RouterView>
|
||||||
|
<RouterView v-if="!$route.meta.keepAlive" :key="$route.path" /> -->
|
||||||
</div>
|
</div>
|
||||||
<nut-tabbar unactive-color="#364636" active-color="#1989fa" @tab-switch="tabSwitch" bottom>
|
<nut-tabbar unactive-color="#364636" active-color="#1989fa" @tab-switch="tabSwitch" bottom>
|
||||||
<nut-tabbar-item :tab-title="$t('tabbar.home')" font-class-name="iconfont" class-prefix="icon" icon="home" />
|
<nut-tabbar-item :tab-title="$t('tabbar.home')" icon="home" />
|
||||||
<nut-tabbar-item :tab-title="$t('tabbar.list')" font-class-name="iconfont" class-prefix="icon" icon="list" />
|
<nut-tabbar-item :tab-title="$t('tabbar.list')" icon="horizontal" />
|
||||||
<nut-tabbar-item :tab-title="$t('tabbar.member')" font-class-name="iconfont" class-prefix="icon" icon="member" />
|
<nut-tabbar-item :tab-title="$t('tabbar.member')" icon="my" />
|
||||||
|
<nut-tabbar-item :tab-title="$t('tabbar.demo')" icon="location" />
|
||||||
</nut-tabbar>
|
</nut-tabbar>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -29,13 +36,21 @@
|
|||||||
case 2:
|
case 2:
|
||||||
router.push('/member');
|
router.push('/member');
|
||||||
break;
|
break;
|
||||||
|
case 3:
|
||||||
|
router.push('/demo');
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
.nut-navbar {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.main-page {
|
.main-page {
|
||||||
height: calc(100vh - 50px);
|
box-sizing: border-box;
|
||||||
|
padding: 40px;
|
||||||
|
height: calc(100vh - 88px);
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
15
src/main.ts
15
src/main.ts
@ -2,19 +2,26 @@ import { createApp } from 'vue';
|
|||||||
import App from './App.vue';
|
import App from './App.vue';
|
||||||
import { nutUiComponents } from './plugins/nutUI';
|
import { nutUiComponents } from './plugins/nutUI';
|
||||||
import { i18n } from '/@/i18n';
|
import { i18n } from '/@/i18n';
|
||||||
import router from './router';
|
import router from '/@/router';
|
||||||
import { setupStore } from '/@/store';
|
import store from '/@/store';
|
||||||
import './assets/font/iconfont.css';
|
import './assets/font/iconfont.css';
|
||||||
import './assets/app.css';
|
import './assets/app.css';
|
||||||
|
import 'amfe-flexible';
|
||||||
|
|
||||||
const app = createApp(App);
|
const app = createApp(App);
|
||||||
|
|
||||||
|
// 路由
|
||||||
app.use(router);
|
app.use(router);
|
||||||
|
|
||||||
setupStore(app);
|
// 国际化
|
||||||
app.use(i18n);
|
app.use(i18n);
|
||||||
app.mount('#app');
|
|
||||||
|
// 状态管理
|
||||||
|
app.use(store);
|
||||||
|
|
||||||
// nutUi按需加载
|
// nutUi按需加载
|
||||||
nutUiComponents.forEach((item) => {
|
nutUiComponents.forEach((item) => {
|
||||||
app.use(item);
|
app.use(item);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
app.mount('#app');
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
import { createRouter, createWebHashHistory, Router } from 'vue-router';
|
import { createRouter, createWebHistory, Router } from 'vue-router';
|
||||||
import routes from './routes';
|
import routes from './routes';
|
||||||
|
|
||||||
const router: Router = createRouter({
|
const router: Router = createRouter({
|
||||||
history: createWebHashHistory('/'),
|
history: createWebHistory('/'),
|
||||||
routes: routes,
|
routes: routes,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ const routes = [
|
|||||||
path: 'home',
|
path: 'home',
|
||||||
component: () => import('/@/views/home/index.vue'),
|
component: () => import('/@/views/home/index.vue'),
|
||||||
meta: {
|
meta: {
|
||||||
title: '',
|
title: 'tabbar.home',
|
||||||
keepAlive: true,
|
keepAlive: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -16,7 +16,7 @@ const routes = [
|
|||||||
path: 'list',
|
path: 'list',
|
||||||
component: () => import('/@/views/list/index.vue'),
|
component: () => import('/@/views/list/index.vue'),
|
||||||
meta: {
|
meta: {
|
||||||
title: '',
|
title: 'tabbar.list',
|
||||||
keepAlive: true,
|
keepAlive: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -24,7 +24,15 @@ const routes = [
|
|||||||
path: 'member',
|
path: 'member',
|
||||||
component: () => import('/@/views/member/index.vue'),
|
component: () => import('/@/views/member/index.vue'),
|
||||||
meta: {
|
meta: {
|
||||||
title: '',
|
title: 'tabbar.member',
|
||||||
|
keepAlive: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'demo',
|
||||||
|
component: () => import('/@/views/demo/index.vue'),
|
||||||
|
meta: {
|
||||||
|
title: 'tabbar.demo',
|
||||||
keepAlive: true,
|
keepAlive: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -1,10 +1,5 @@
|
|||||||
import type { App } from 'vue';
|
|
||||||
import { createPinia } from 'pinia';
|
import { createPinia } from 'pinia';
|
||||||
|
|
||||||
const store = createPinia();
|
const store = createPinia();
|
||||||
|
|
||||||
export function setupStore(app: App<Element>) {
|
export default store;
|
||||||
app.use(store);
|
|
||||||
}
|
|
||||||
|
|
||||||
export { store };
|
|
||||||
|
55
src/views/demo/index.vue
Normal file
55
src/views/demo/index.vue
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
<template>
|
||||||
|
<section>
|
||||||
|
<span class="title">varlet</span>
|
||||||
|
<var-space :size="[10, 10]">
|
||||||
|
<var-button>demo</var-button><var-button type="primary">主要按钮</var-button>
|
||||||
|
<var-button type="info">信息按钮</var-button>
|
||||||
|
<var-button type="success">成功按钮</var-button>
|
||||||
|
<var-button type="warning">警告按钮</var-button>
|
||||||
|
<var-button type="danger">危险按钮</var-button>
|
||||||
|
</var-space>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<span class="title">vant</span>
|
||||||
|
<div class="demo">
|
||||||
|
<van-button type="primary">主要按钮</van-button>
|
||||||
|
<van-button type="success">成功按钮</van-button>
|
||||||
|
<van-button type="default">默认按钮</van-button>
|
||||||
|
<van-button type="warning">警告按钮</van-button>
|
||||||
|
<van-button type="danger">危险按钮</van-button>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<span class="title">vnutUI</span>
|
||||||
|
<div class="demo">
|
||||||
|
<nut-button type="primary">主要按钮</nut-button>
|
||||||
|
<nut-button type="info">信息按钮</nut-button>
|
||||||
|
<nut-button type="default">默认按钮</nut-button>
|
||||||
|
<nut-button type="danger">危险按钮</nut-button>
|
||||||
|
<nut-button type="warning">警告按钮</nut-button>
|
||||||
|
<nut-button type="success">成功按钮</nut-button>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup></script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
section {
|
||||||
|
.title {
|
||||||
|
margin-bottom: 40px;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
&:nth-child(2) {
|
||||||
|
.title {
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.demo {
|
||||||
|
> :nth-child(n) {
|
||||||
|
margin-right: 20px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
@ -1,20 +1,15 @@
|
|||||||
<template>
|
<template>
|
||||||
<nut-navbar :left-show="false" :title="$t('tabbar.home')" />
|
<header class="header">
|
||||||
<header class="header"> <img src="https://www.sunniejs.cn/static/weapp/logo.png" /><span> VUE H5开发模板</span> </header>
|
<img src="https://www.sunniejs.cn/static/weapp/logo.png" /><span> {{ $t('title') }}</span>
|
||||||
<p class="intro-header">
|
</header>
|
||||||
{{ $t('introduction') }}
|
<div class="intro-header">
|
||||||
|
<div>{{ $t('introduction') }}</div>
|
||||||
<a href="https://github.com/sunniejs/vue-h5-template.git">
|
<a href="https://github.com/sunniejs/vue-h5-template.git">
|
||||||
<nut-icon class="github-icon" name="github" />
|
<nut-icon name="github" />
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</div>
|
||||||
<nut-cell-group :title="$t('home.support')" class="supportList">
|
<nut-cell-group :title="$t('home.support')" class="supportList">
|
||||||
<nut-cell title="Vue3" icon="Check" />
|
<nut-cell v-for="(item, index) in cellList" :key="index" :title="item" icon="Check" />
|
||||||
<nut-cell title="Vue-router" icon="Check" />
|
|
||||||
<nut-cell title="Axios" icon="Check" />
|
|
||||||
<nut-cell title="Pinia" icon="Check" />
|
|
||||||
<nut-cell title="NutUI" icon="Check" />
|
|
||||||
<nut-cell title="Vue-i18n" icon="Check" />
|
|
||||||
<nut-cell title="Jsx" icon="Check" />
|
|
||||||
</nut-cell-group>
|
</nut-cell-group>
|
||||||
<div class="btn-wrap">
|
<div class="btn-wrap">
|
||||||
<nut-button shape="square" size="small" type="default" @click="changeLang('zh-cn')">
|
<nut-button shape="square" size="small" type="default" @click="changeLang('zh-cn')">
|
||||||
@ -32,11 +27,13 @@
|
|||||||
import { useUserStore } from '/@/store/modules/user';
|
import { useUserStore } from '/@/store/modules/user';
|
||||||
import { setLang } from '/@/i18n';
|
import { setLang } from '/@/i18n';
|
||||||
|
|
||||||
|
let cellList = ['vue3', 'vite', 'vue-router', 'axios', 'Pinia', 'vue-i18n', 'vue-jsx', 'vatlet/vant/nutUI'];
|
||||||
const userStore = useUserStore();
|
const userStore = useUserStore();
|
||||||
const getUserInfo = computed(() => {
|
const getUserInfo = computed(() => {
|
||||||
const { name = '' } = userStore.getUserInfo || {};
|
const { name = '' } = userStore.getUserInfo || {};
|
||||||
return name;
|
return name;
|
||||||
});
|
});
|
||||||
|
|
||||||
const changeLang = (type) => {
|
const changeLang = (type) => {
|
||||||
setLang(type);
|
setLang(type);
|
||||||
};
|
};
|
||||||
@ -45,36 +42,34 @@
|
|||||||
.header {
|
.header {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
margin: 26px 0 10px;
|
align-items: center;
|
||||||
padding: 0 20px;
|
padding: 0 20px;
|
||||||
height: 50px;
|
font-size: 40px;
|
||||||
height: 30px;
|
img {
|
||||||
font-size: 20px;
|
width: 90px;
|
||||||
}
|
height: 90px;
|
||||||
|
}
|
||||||
.intro-title {
|
|
||||||
text-align: center;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.intro-header {
|
.intro-header {
|
||||||
height: 30px;
|
margin-top: 20px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
text-align: center;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.supportList {
|
.supportList {
|
||||||
margin: 0 16px;
|
margin: 0 16px;
|
||||||
|
|
||||||
|
.nut-cell-group__title {
|
||||||
|
margin-top: 30px;
|
||||||
|
}
|
||||||
.nut-icon {
|
.nut-icon {
|
||||||
color: green;
|
color: green;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.github-icon {
|
|
||||||
margin-top: 4px;
|
|
||||||
font-size: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-wrap {
|
.btn-wrap {
|
||||||
margin: 20px;
|
margin: 20px;
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
<template>
|
<template>
|
||||||
<nut-navbar :left-show="false" :title="$t('tabbar.list')" />
|
|
||||||
<nut-card :img-url="state.imgUrl" :title="state.title" :price="state.price" :vip-price="state.vipPrice" :shop-name="state.shopName" />
|
<nut-card :img-url="state.imgUrl" :title="state.title" :price="state.price" :vip-price="state.vipPrice" :shop-name="state.shopName" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
<template>
|
<template>
|
||||||
<nut-navbar :left-show="false" :title="$t('tabbar.member')" />
|
|
||||||
<div class="avatar-wrap">
|
<div class="avatar-wrap">
|
||||||
<nut-avatar
|
<nut-avatar
|
||||||
class="avatar"
|
class="avatar"
|
||||||
@ -41,16 +40,20 @@
|
|||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.avatar-wrap {
|
.avatar-wrap {
|
||||||
display: flex;
|
display: flex;
|
||||||
margin: 30px;
|
margin: 0 10px 40px;
|
||||||
height: 50px;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
.member-detail {
|
.member-detail {
|
||||||
margin-left: 20px;
|
margin-left: 20px;
|
||||||
.nickname {
|
.nickname {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
.nut-button {
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.info {
|
.info {
|
||||||
|
margin-top: 10px;
|
||||||
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
3
types/components.d.ts
vendored
3
types/components.d.ts
vendored
@ -10,5 +10,8 @@ declare module '@vue/runtime-core' {
|
|||||||
RouterLink: typeof import('vue-router')['RouterLink'];
|
RouterLink: typeof import('vue-router')['RouterLink'];
|
||||||
RouterView: typeof import('vue-router')['RouterView'];
|
RouterView: typeof import('vue-router')['RouterView'];
|
||||||
TitleBar: typeof import('./../src/components/TitleBar/index.vue')['default'];
|
TitleBar: typeof import('./../src/components/TitleBar/index.vue')['default'];
|
||||||
|
VanButton: typeof import('vant/es')['Button'];
|
||||||
|
VarButton: typeof import('@varlet/ui')['_ButtonComponent'];
|
||||||
|
VarSpace: typeof import('@varlet/ui')['_SpaceComponent'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user