<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script type="module">
class MyElement extends HTMLElement {
constructor() {
super();
const shadow = this.attachShadow({ mode: 'open' });
shadow.innerHTML = `<p>Hello, Web Component!</p>`;
}
}
customElements.define('my-element', MyElement);
</script>
<my-element></my-element>
</body>
</html>
一個最簡單的web components
相關文章
- 【譯】Web Components簡介Web
- 一個最簡單的 Github workflow 例子Github
- 最簡單的nginx教程 - 如何把一個web應用部署到nginx上NginxWeb
- 一個最簡單的WebSocket hello world demoWeb
- 一個超級簡單的 go Web 框架GoWeb框架
- Web Components系列(一) —— 概述Web
- Flask之旅: 寫一個簡單的Python Web框架FlaskPythonWeb框架
- Go For Web:一篇文章帶你用 Go 搭建一個最簡單的 Web 服務、瞭解 Golang 執行 web 的原理WebGolang
- leetcode_58_最後一個單詞的長度_簡單LeetCode
- 用Java編寫一個最簡單的桌面程式Java
- SAP Cloud Platform integration上建立一個最簡單的iFlowCloudPlatform
- 探索Web ComponentsWeb
- 如何用TypeScript來建立一個簡單的Web應用TypeScriptWeb
- 一個簡單可分享的web資料透視分析Web
- 【leetcode 簡單】第十四題 最後一個單詞的長度LeetCode
- 由node.js搭建的一個簡單的web網站Node.jsWeb網站
- 使用ABAP實現一個最簡單的區塊鏈原型區塊鏈原型
- 最簡單的dockerfile使用教程 - 建立一個支援SSL的Nginx映象DockerNginx
- Flutter隨筆(二)——使用Flutter Web + Docker + Nginx打造一個簡單的Web專案FlutterWebDockerNginx
- Web Components 小欖Web
- 基於Idea從零搭建一個最簡單的vue專案IdeaVue
- 手把手教你手寫一個最簡單的 Spring Boot StarterSpring Boot
- 關於一個最簡單的數獨解題實現與疑惑一
- Tomcat詳解系列(1) - 如何設計一個簡單的web容器TomcatWeb
- 從最簡單的入手學習 Docker (一)Docker
- Android 最簡單的自定義MenuItem之一AndroidUI
- Android 最簡單的自定義Dialog之一Android
- 如何搭建一個簡易的 Web Terminal(一)Web
- [譯] Web Components 的高階工具Web
- 淺析Web components的痛點Web
- 寫一個最簡陋的node框架框架
- websocket+node實現一個最簡單的即時通訊功能Web
- 27 行程式碼開發一個最簡單的 SAP ALV 報表行程
- 最簡單的物件建立物件
- 一個簡簡單單的紅點系統框架框架
- 一個簡單的 PWA 指南
- 一個簡單的Tessellation Shader
- 一個簡單的「IOC」例子