关键词搜索

源码搜索 ×
×

前端笔记-vue cli为web添加底纹

发布2019-08-05浏览4369次

详情内容

目录

 

基本概念

代码与实例


 

基本概念

这里主要是使用了css预处理

首先下载包

npm install stylus stylus-loader

随后创建文件,然后写代码

这里还要导入代码:

这里还要引入下:

程序运行截图如下:


 

代码与实例

文件结构如下:

源码如下:

blogbal.styl

  1. html, body{
  2. margin 0
  3. padding 0
  4. width 100%
  5. height 100%
  6. }
  7. body{
  8. background-image: url("../images/bg.jpg")
  9. }

main.js

  1. // The Vue build version to load with the `import` command
  2. // (runtime-only or standalone) has been set in webpack.base.conf with an alias.
  3. import Vue from 'vue'
  4. import App from './App'
  5. import router from './router'
  6. import './assets/styles/global.styl'
  7. Vue.config.productionTip = false
  8. /* eslint-disable no-new */
  9. new Vue({
  10. el: '#app',
  11. router,
  12. components: { App },
  13. template: '<App/>'
  14. })

 

 

相关技术文章

点击QQ咨询
开通会员
返回顶部
×
微信扫码支付
微信扫码支付
确定支付下载
请使用微信描二维码支付
×

提示信息

×

选择支付方式

  • 微信支付
  • 支付宝付款
确定支付下载