modulerizr
Version:
Integrate a powerful, component based architecture to your legacy project in just a few steps
18 lines (15 loc) • 402 B
HTML
<html lang="en">
<head>
<title>Scope Styles</title>
</head>
<body>
<!--
In this example we have scoped styles.
With scoped styles they don't affect other components - neither child-components.
-->
<script>
var globalVariable = 'This variable is global';
</script>
<scoped-scripts :param1="param1" :param2="param2"></scoped-scripts>
</body>
</html>