To create a view with an index, the view must be created using the WITH SCHEMABINDING keywords:
CREATE VIEW view_EmployeeInfo
WITH SCHEMABINDING
AS
SELECT EmployeeID,
FirstName,
LastName,
HireDate
FROM [dbo].Employee
GO
Any clustered or non-clustered ...