我们如何替换组件标签以在视图源中呈现 HTML 代码?
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSRF Token -->
<meta name="csrf-token" content="JDhrGe3ZRLyJxubtyNLnjqDEedb70f62Z2S6Y93C">
<title>Laravel</title>
<!-- Fonts -->
<link rel="dns-prefetch" href="//fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
<!-- Styles -->
<link href="http://localhost/laravel_vue/public/css/app.css" rel="stylesheet">
</head>
<body>
<div id="app">
<example-component></example-component> // Need html code here
</div>
<!-- Scripts -->
<script src="http://localhost/laravel_vue/public/js/app.js" defer></script>
</body>
</html>
我想代表组件标签显示 Html 代码。