vue-pug-syntax
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

Vite Plugin : Vue Pug Syntax

English | 简体中文 | 繁體中文

This plugin is the TS version of vue-pug-plugin, if you need a JS plugin, use it instead of this.

Intro

This plugin allows you to use Pug syntax in Vue.

Before:

<template lang="pug">
ul(v-if="showComments")
  li(v-for="comment in comments")
    a(v-if="comment.link !== undefined" :href="comment.link") Link to {{ comment.linkTitle }}
    p(v-else) {{ comment.content }}
template(v-if="showFooter")
  p Copyright since 2022
  p All rights reserved.
</template>

After:

<template lang="pug">
if showComments
  ul
    each comment in comments
      if comment.link !== undefined
        a(:href='comment.link') Link to #{comment.linkTitle}
      else
        p= comment.content
if showFooter
  p Copyright since 2022
  p All rights reserved.
</template>

Installation

In your project:

$ pnpm install -D vue-pug-plugin

You also need pug and typescript.

In your vite.config.ts:

// CJS syntax
const vuePugSyntax = require('vue-pug-syntax');
// ES syntax
import vuePugSyntax from 'vue-pug-syntax';

...

export default {
  plugins: [
    vue({
      template: {
        preprocessOptions: {
          plugins: [vuePugSyntax]
        }
      }
    })
  ]
}

Notes

For Vue attribute variables you should still write them in string literals:

//- OK
a(:href="thisIsAVariable + '.com'")
//- Err
a(:href=thisIsAVariable + '.com')

You can use unescaped code or unescaped string interpolation to insert a variable at compile time:

<script setup lang="ts">
import { ref } from 'vue';
var x = ref(1);
</script>

<template lang="pug">
- var y = 1;

//- Dynamically insert via Vue
p= x
//- Insert at compile-time
p!= y
</template>

Inside a loop block, you can use key as the index variable name, and :key="key" attribute will be added to the element:

each item, key in items
  p= item
each item, key in items
  p Lorem
  p Ipsum

Will be translated to:

p(v-for="(item, key) in items" :key="key") {{ item }}
template(v-for="(item, key) in items" :key="ley")
  p Lorem
  p Ipsum

Readme

Keywords

Package Sidebar

Install

npm i vue-pug-syntax

Weekly Downloads

1

Version

1.0.1

License

MIT

Unpacked Size

16.6 kB

Total Files

11

Last publish

Collaborators

  • hellolin