如何安装svelte_如何在Svelte中导入组件

如何安装svelte

Svelte provides single file components. Every component is declared into a .svelte file, and in there you can write the HTML markup, the CSS and the JavaScript needed.

Svelte提供单个文件组件。 每个组件都声明为一个.svelte文件,您可以在其中编写HTML标记,所需CSS和JavaScript。

Here’s a simple Svelte component example, living in a file called Button.svelte:

这是一个简单的Svelte组件示例,位于一个名为Button.svelte的文件中:

<button>A button</button>

You can add CSS and JS to this component, but this plain HTML markup is already the markup of the component, there’s no need to wrap it in another special tag or anything.

可以将CSS和JS添加到此组件中,但是这个普通HTML标记已经是该组件的标记,无需将其包装在另一个特殊标签或任何其他内容中。

To export this markup from this component you don’t have to do anything. You can now import it into any other Svelte component using the import ComponentName from 'componentPath' syntax:

要从此组件导出此标记,您无需执行任何操作。 现在,您可以使用import ComponentName from 'componentPath'语法中的import ComponentName from 'componentPath'将其导入到其他任何Svelte组件中:

<script>
import Button from './Button.svelte';
</script>

And now you can use the newly imported component in the markup, like an HTML tag:

现在,您可以在标记中使用新导入的组件,例如HTML标签:

<Button />

翻译自: https://flaviocopes.com/svelte-import-components/

如何安装svelte

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值