styled-vue icon indicating copy to clipboard operation
styled-vue copied to clipboard

Support object literal

Open egoist opened this issue 6 years ago • 0 comments

import { css } from 'styled-vue'

export default {
  style: css({
    h1: {
	  color: 'red',
      fontSize: vm => vm.fontSize
	}
  })
}

egoist avatar Jan 08 '19 15:01 egoist