Skip to content

Instantly share code, notes, and snippets.

@freearhey
Created January 13, 2017 15:48
Show Gist options
  • Save freearhey/f7bb42d6b35847e5a3078d0a6e940c56 to your computer and use it in GitHub Desktop.
Save freearhey/f7bb42d6b35847e5a3078d0a6e940c56 to your computer and use it in GitHub Desktop.
Добавление scss-файлов в проект
// Для работы так же необходимо установить соответствующие 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'
})
body {
background-color: AliceBlue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment