-
Notifications
You must be signed in to change notification settings - Fork 30
Open
Description
cause error :
<template><div></div></template>
<script>
define(['Vue'],function(Vue){})
</script>
<style></style>no error:
<template><div></div></template>
<script>
define(['Vue'],function(Vue){});
</script>
<style></style>because the error code text passed to onload.fromText is:
(function (template) {
define(['Vue'], function (Vue) {
}) // here is the reason because of IIFE
(function (css, id) {
})(' ', 1);
})('' +
' <div>' +
' </div>' +
'' + '');also in css_parser , functionString trans
.a .b{}to
.a.b{}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels