为了账号安全,请及时绑定邮箱和手机立即绑定

vue的js html和css可以分开写吗

vue的js html和css可以分开写吗

慕村9548890 2019-02-28 14:23:01
代码太多了,应该怎么分开引入,小白求解
查看完整描述

2 回答

?
米琪卡哇伊

TA贡献1998条经验 获得超6个赞

//index.vue

<script> 

import template from './index.html'


export default {

  template

}

</script>


<style  scoped> 

@import './index.css';

</style>

//index.html

<input type="text" class="input">

//index.css

.input {

  width: 100%;

  padding: 8px 10px;

  border: 1px solid blue;

}


查看完整回答
反对 回复 2019-03-04
?
婷婷同学_

TA贡献1844条经验 获得超8个赞

<template>
<div>This will be pre-compiled</div>
</template>
<script src="./my-component.js"></script>
<style src="./my-component.css"></style>

查看完整回答
反对 回复 2019-03-04
  • 2 回答
  • 0 关注
  • 4101 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信