<!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伺服器實現(一)Web伺服器
- 一個最簡單的 Github workflow 例子Github
- 一個最簡單的計算器
- 最簡單的一個powershell的指令碼指令碼
- 【譯】Web Components簡介Web
- 一個最簡單的WebSocket hello world demoWeb
- 一個最簡單的類JQuery封裝jQuery封裝
- 一個最簡單的XML檔案(轉)XML
- 最簡單的nginx教程 - 如何把一個web應用部署到nginx上NginxWeb
- 一個超級簡單的 go Web 框架GoWeb框架
- UICollectionView(二)實現一個最簡單的UICollectionViewUIView
- 用Python寫一個簡單的Web框架PythonWeb框架
- 用Java編寫一個最簡單的桌面程式Java
- linux c 一個autotools的最簡單例子Linux單例
- 自己實現一個最簡單的資料庫資料庫
- Go For Web:一篇文章帶你用 Go 搭建一個最簡單的 Web 服務、瞭解 Golang 執行 web 的原理WebGolang
- Web Components系列(一) —— 概述Web
- Flask之旅: 寫一個簡單的Python Web框架FlaskPythonWeb框架
- SAP Cloud Platform integration上建立一個最簡單的iFlowCloudPlatform
- leetcode_58_最後一個單詞的長度_簡單LeetCode
- 如何用TypeScript來建立一個簡單的Web應用TypeScriptWeb
- 開發和部署一個簡單的Clojure Web應用Web
- 一個簡單可分享的web資料透視分析Web
- 使用ABAP實現一個最簡單的區塊鏈原型區塊鏈原型
- C#實現一個最簡單的HTTP伺服器C#HTTP伺服器
- 用BCB寫一個最簡單的多執行緒 (轉)執行緒
- 由node.js搭建的一個簡單的web網站Node.jsWeb網站
- 最簡單的dockerfile使用教程 - 建立一個支援SSL的Nginx映象DockerNginx
- 使用Gradle建立一個最簡單的Spring Boot專案GradleSpring Boot
- Oracle 10g 手工建立一個最簡單的資料庫Oracle 10g資料庫
- 最簡單最實用的ajax(一)基礎通用ajax
- 探索Web ComponentsWeb
- 關於一個最簡單的數獨解題實現與疑惑一
- 【leetcode 簡單】第十四題 最後一個單詞的長度LeetCode
- Flutter隨筆(二)——使用Flutter Web + Docker + Nginx打造一個簡單的Web專案FlutterWebDockerNginx
- 從最簡單的入手學習 Docker (一)Docker
- 史上最簡單的 Spring MVC 教程(一)SpringMVC
- 從HTML Components的衰落看Web Components的危機HTMLWeb