Skip to content
This repository was archived by the owner on Jan 18, 2022. It is now read-only.
This repository was archived by the owner on Jan 18, 2022. It is now read-only.

node-sass property 'data' overwrites component styles #93

Closed
@holgerw

Description

@holgerw

Node-sass has a 'data' property that could be used to prepend common statements into sass scopes. This would be very useful to import common sass, like variables, in every component.
But setting the 'data' property, actually overwrites the components styles.

Expected behavior

vue({
  scss: {
    includePaths: ['./src/styles'],
    data: '@import "_variables";'
  }
})

should import shared variables into the styles of every component with lang="scss", prepending the content of the 'data' property to the component's style code.

Actual behavior

The content of the 'data' property overwrites the styles of every component with lang="scss".

Why is it important

The expected behavior would be a very dry way to maintain common Sass code, relevant for every component, like variables and mixins.

The 'data' property seems to work as expected with webpack, as discussed here vuejs-templates/webpack#149

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions