npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

v-bem

v1.1.1

Published

Bem from vue.js custom dirrectives

Downloads

82

Readme

На русском


In English


На русском

Минималистичный плагин, позволяющий прописывать bem-классы элементам компонентов через диррективу v-bem.

Установка

  • С помощью yarn: yarn add v-bem
  • С помощю npm: npm install v-bem

Подключение

    import Vue from "vue";
    import vBEM from "v-bem";
    Vue.use(vBEM, {/*config*/});

config

Необязательный объект с параметрами, часть из которых соответствует списку Alternative BEM syntax в b_ (В квадратных скобках указаны дефолтные значения).

  • elementSeparator: разделитель между блоком и элементом ["__"].
  • modSeparator: разделитель между элементом|блоком и модификатором ["_"].
  • modValueSeparator: разделитель между именем модификатора и его значением ["_"].
  • blockPrefix: префикс перед именеим блока [""].
  • elementKey: ключ значения в объекте модификаторов, используемого как имя блока ["__"].
  • directiveName: имя диррективы (без префикса v-) ["bem"].

Использование

Исключительно внутри компонентов, посредством диррективы, указавнной в настройках (по умолчанию v-bem).

Замечание: во всех примерах ниже в качестве компонента используется popup, отсюда и имя блока popup.

Просто блок

<template>
    <div v-bem></div>
</template>
<div class="popup"></div>

Элемент блока

Простейший случай

Указывается в качестве модификатора диррективы (в примере ниже это element).

<template>
    <div v-bem.element></div>
</template>
<div class="popup__element"></div>

Вычисляемое имя элемента

Имя переинной указывается в качестве аргумента диррективы.

<template>
    <div v-bem:elem></div>
</template>
<script>
    module.exports = {
        computed: {
            elem(){
                return 'element-2';
            }
        },
    }
</script>
<div class="popup__element-2"></div>

Через значение диррективы

Предусмотрен как резервный вариант. Имя блока нужно указать в объекте модификаторы с ключём, указанном в elementKey настроек (по умолчанию __).

<template>
    <div v-bem="{'__': 'element', active: true}"></div>
</template>
<div class="popup__element popup__element_active"></div>

Модификатор блока

Указывается в виде строки или объекта в значении диррективы.

<template>
    <div v-bem="'active'"></div>
</template>
<div class="popup popup_active"></div>

Пример с объектом:

<template>
    <div v-bem="{theme: 'big', active: true}"></div>
</template>
<div class="popup popup_theme_big popup_active"></div>

В значении диррективы можно укзать любое выражение, например объект, содержажий вычисляемые свойства.

<template>
    <div v-bem="{theme}"></div>
</template>
<script>
    module.exports = {
        computed: {
            theme(){
                return 'small';
            }
        },
    }
</script>
<div class="popup popup_theme_small"></div>

Модификатор элемента

Полностью аналогичен модификатору блока, только в модификаторе диррективы передается имя блока.

<template>
    <div v-bem.button="'active'"></div>
</template>
<div class="popup__button popup__button_active"></div>

Использование внутри Pug

В базовом варианте pug не позволяет указывать атрибуты без значения: парсит в запись вида атрибут="атрибут", что собственно не верно. Для формировани класса блока (или элемента) без модификаторов нужно указывать пустой объект модификаторов.

<template lang="pug">
	<div v-bem="{}"></div>
</template>
<div class="popup"></div>

In English