1

我在 Svelte 中使用 tw-in-js/twind。当使用 Svelte App 的 vanilla 设置并包含 Twind 后,我找不到任何方法让插件工作:

<script>
    import {tw, apply, setup} from 'twind/css';

    setup ({
        plugins: {
            h1style: apply`
                uppercase
                text-6xl
                font-thin
            `,
        },
    });

    const h1style2 = apply `uppercase text-6xl font-thin`;

    export let name;
</script>

<main>
    <h1 class={tw`h1style`}>Hello {name}!</h1>
    <p>Visit the <a href="https://svelte.dev/tutorial" class={tw`italic`}>Svelte tutorial</a> to learn how to build Svelte apps.</p>
</main>

在上面的代码示例中,h1style2(const 声明)有效,但插件 h1style 无效。

如果有人可以让这个工作,我将不胜感激。

4

1 回答 1

1

我在 Svelte Repl 中尝试了您的示例,它似乎有效:https ://svelte.dev/repl/e153da51e31a4b6c90cce63d9b6b3194?version=3.31.2

在这里您可以找到我们的示例 svelte 项目:https ://github.com/tw-in-js/example-svelte

需要注意的一点是,它setup应该在应用初始化程序中的组件之外或在<script context="module">. 这确保setup每个应用程序只调用一次。

于 2021-01-25T09:35:31.790 回答