我有以下表单组件:
<template>
<div>
<form>
<input placeholder="Recipe Name">
<textarea placeholder="Recipe Description..." rows="10"></textarea>
</form>
</div>
</template>
<script>
export default {
name: 'AddRecipeForm'
}
</script>
<style scoped>
form {
display: flex;
flex-direction: column;
}
</style>
在<style>
使用scoped
属性。
应用时,不会加载CSS 。scoped
移除后,它会被应用。
但是,我想将其保留在组件本地。
当scoped
属性存在时,为什么CSS无法应用?
通过运行“纱线服务”来重建Vue App对我来说已经解决了这个问题。