Created
January 13, 2017 15:48
-
-
Save freearhey/f7bb42d6b35847e5a3078d0a6e940c56 to your computer and use it in GitHub Desktop.
Добавление scss-файлов в проект
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Для работы так же необходимо установить соответствующие webpack загрузчики | |
// npm install style-loader css-loader node-sass sass-loader --save-dev | |
var Vue = require('vue') | |
require('style!css!sass!./style.scss') | |
new Vue({ | |
el: '#app' | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
background-color: AliceBlue; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment