Skip to content

Webpack-loader to use coffeescript in vue templates as attributes or interpolations.

License

Notifications You must be signed in to change notification settings

bwin/coffee-in-vue-templates-loader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

coffee-in-vue-templates-loader [CIVTL]

| Webpack-loader to use coffeescript in vue templates as attributes or interpolations.

Installation

yarn add --dev coffee-in-vue-templates-loader

Example usage

Example usage with pug (as intended):

<template lang="pug">
	div(:class="active: i is 2" @click="fn item, something: yes") {{ $t 'buttons.ok' }}
</template>

Same example with just html:

<template>
	<div :class="active: i is 2" @click="fn item, something: yes">{{ $t 'buttons.ok' }}</div>
</template>

Both would get transpiled to:

<template>
	<div :class="{ active: i === 2 }" @click="fn(item, { something: true })">{{ $t('buttons.ok') }}</div>
</template>

Webpack configuration

With nuxt

For example to use with pug, put the following in nuxt.config.coffee:

[...]
	build:
		extend: (config, ctx) ->
			config.module.rules.push
				test: /\.pug$/
				use: ['coffee-in-vue-templates-loader', 'pug-plain-loader']

About

Webpack-loader to use coffeescript in vue templates as attributes or interpolations.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published