app.vue文件hello world运行出错,老师 "stylus", "stylus-loader"通过npm install安装了,什么情况?
来源:2-4 项目目录介绍及图标字体、公共样式等资源准备
慕粉3643360
2018-03-14
app.vue文件
<template>
<div id="app">
hello world
<!--<img src="./assets/logo.png">-->
<!--<router-view/>-->
</div>
</template>
<script>
export default {
name: 'App'
}
</script>
<style scoped lang="stylus" rel="stylesheet/stylus">
@import "~ common/stylus/variable";
#app {
color:red;
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>
报错如图:
写回答
2回答
-
大疯魔
2018-05-08
引入stylus文件时候报错啦,控制台里面给出错误了
00 -
ustbhuangyi
2018-03-14
~ 中间不要加空格
00
相似问题