mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-06 03:57:50 +08:00
sass
This commit is contained in:
parent
556eb3e45b
commit
7a6ee96044
95
README.md
95
README.md
@ -269,7 +269,21 @@ Vue.use(Tabbar).use(TabbarItem)
|
|||||||
|
|
||||||
首先 你可能会遇到 `node-sass` 安装不成功,别放弃多试几次!!!
|
首先 你可能会遇到 `node-sass` 安装不成功,别放弃多试几次!!!
|
||||||
|
|
||||||
目录结构,在 `src/assets/css/`文件夹下包含了三个文件
|
每个页面自己对应的样式都写在自己的 .vue 文件之中 `scoped` 它顾名思义给 css 加了一个域的概念。
|
||||||
|
|
||||||
|
```html
|
||||||
|
<style lang="scss">
|
||||||
|
/* global styles */
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
/* local styles */
|
||||||
|
</style>
|
||||||
|
```
|
||||||
|
|
||||||
|
#### 目录结构
|
||||||
|
|
||||||
|
vue-h5-template 所有全局样式都在 `@/src/assets/css` 目录下设置
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
├── assets
|
├── assets
|
||||||
@ -279,45 +293,56 @@ Vue.use(Tabbar).use(TabbarItem)
|
|||||||
│ │ └── variables.scss # 全局变量
|
│ │ └── variables.scss # 全局变量
|
||||||
```
|
```
|
||||||
|
|
||||||
每个页面自己对应的样式都写在自己的 .vue 文件之中
|
#### 自定义 vant-ui 样式
|
||||||
|
|
||||||
```html
|
现在我们来说说怎么重写 `vant-ui` 样式。由于 `vant-ui` 的样式我们是在全局引入的,所以你想在某个页面里面覆盖它的样式就不能加 `scoped`,但你又想只覆盖这个页面的 `vant` 样式,你就可在它的父级加一个 `class`,用命名空间来解决问题。
|
||||||
<style lang="scss">
|
|
||||||
/* global styles */
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
```css
|
||||||
/* local styles */
|
.about-container {
|
||||||
</style>
|
/* 你的命名空间 */
|
||||||
|
.van-button {
|
||||||
|
/* vant-ui 元素*/
|
||||||
|
margin-right: 0px;
|
||||||
|
}
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
`vue.config.js` 配置注入 `sass` 的 `mixin` `variables` 到全局,不需要手动引入 ,配置`$cdn`通过变量形式引入 cdn 地址
|
#### 父组件改变子组件样式 深度选择器
|
||||||
|
|
||||||
|
当你子组件使用了 `scoped` 但在父组件又想修改子组件的样式可以 通过 `>>>` 来实现:
|
||||||
|
|
||||||
|
```css
|
||||||
|
<style scoped>
|
||||||
|
.a >>> .b { /* ... */ }
|
||||||
|
</style>
|
||||||
|
```
|
||||||
|
#### 全局变量
|
||||||
|
|
||||||
|
`vue.config.js` 配置使用 `css.loaderOptions` 选项,注入 `sass` 的 `mixin` `variables` 到全局,不需要手动引入 ,配置`$cdn`通过变量形式引入 cdn 地址,这样向所有 Sass/Less 样式传入共享的全局变量:
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
const IS_PROD = ['production', 'prod'].includes(process.env.NODE_ENV)
|
const IS_PROD = ['production', 'prod'].includes(process.env.NODE_ENV)
|
||||||
const defaultSettings = require('./src/config/index.js')
|
const defaultSettings = require('./src/config/index.js')
|
||||||
module.exports = {
|
module.exports = {
|
||||||
css: {
|
css: {
|
||||||
extract: IS_PROD,
|
extract: IS_PROD,
|
||||||
sourceMap: false,
|
sourceMap: false,
|
||||||
loaderOptions: {
|
loaderOptions: {
|
||||||
scss: {
|
// 给 scss-loader 传递选项
|
||||||
// 注入 `sass` 的 `mixin` `variables` 到全局, $cdn可以配置图片cdn
|
scss: {
|
||||||
// 详情: https://cli.vuejs.org/guide/css.html#passing-options-to-pre-processor-loaders
|
// 注入 `sass` 的 `mixin` `variables` 到全局, $cdn可以配置图片cdn
|
||||||
prependData: `
|
// 详情: https://cli.vuejs.org/guide/css.html#passing-options-to-pre-processor-loaders
|
||||||
@import "assets/css/mixin.scss";
|
prependData: `
|
||||||
@import "assets/css/variables.scss";
|
@import "assets/css/mixin.scss";
|
||||||
$cdn: "${defaultSettings.$cdn}";
|
@import "assets/css/variables.scss";
|
||||||
`
|
$cdn: "${defaultSettings.$cdn}";
|
||||||
}
|
`,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
在 `main.js` 中引用全局样式(发现在上面的,prependData 里设置`@import "assets/css/index.scss";`并没有应用全局样式这里在
|
|
||||||
main.js 引入)
|
|
||||||
|
|
||||||
设置 js 中可以访问 `$cdn`,`.vue` 文件中使用`this.$cdn`访问
|
设置 js 中可以访问 `$cdn`,`.vue` 文件中使用`this.$cdn`访问
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
@ -326,7 +351,7 @@ import '@/assets/css/index.scss'
|
|||||||
|
|
||||||
// 设置 js中可以访问 $cdn
|
// 设置 js中可以访问 $cdn
|
||||||
// 引入cdn
|
// 引入cdn
|
||||||
import {$cdn} from '@/config'
|
import { $cdn } from '@/config'
|
||||||
Vue.prototype.$cdn = $cdn
|
Vue.prototype.$cdn = $cdn
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -334,14 +359,14 @@ Vue.prototype.$cdn = $cdn
|
|||||||
|
|
||||||
```html
|
```html
|
||||||
<script>
|
<script>
|
||||||
console.log(this.$cdn)
|
console.log(this.$cdn)
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.logo {
|
.logo {
|
||||||
width: 120px;
|
width: 120px;
|
||||||
height: 120px;
|
height: 120px;
|
||||||
background: url($cdn+'/weapp/logo.png') center / contain no-repeat;
|
background: url($cdn+'/weapp/logo.png') center / contain no-repeat;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -59,8 +59,9 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss">
|
||||||
.about-container {
|
.about-container {
|
||||||
|
/* 你的命名空间 */
|
||||||
background: #fff;
|
background: #fff;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
@ -87,6 +88,10 @@ export default {
|
|||||||
a {
|
a {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
.van-button {
|
||||||
|
/* vant-ui 元素*/
|
||||||
|
background: #ff5500;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user