aboutsummaryrefslogtreecommitdiff
path: root/resources/vue/base-directives.js
blob: c7b85099bddcc32f01859645f42b9d7a34861f92 (plain)
1
2
3
4
5
6
7
8
9
import autofocus from './directives/autofocus';
import allowPlaintextToggle from "./directives/allow-plaintext-toggle";

const BaseDirectives = {
    autofocus,
    allowPlaintextToggle,
};

export default BaseDirectives;